7,000+
June 24, 2026
January 28, 2015
Grow your Mailchimp audience with a customizable email signup bar at the top or bottom of your WordPress site. The bar stays visible while visitors browse, helping your call to action get noticed without blocking your content.
Mailchimp Top Bar is an add-on for MC4WP: Mailchimp for WordPress. It connects the bar to the Mailchimp audience of your choice.
Danny van Kooten has been building WordPress plugins since 2010, starting with WordPress 3.0.
He is the founder of ibericode, the small software company behind popular WordPress plugins including Mailchimp for WordPress, Boxzilla Pop-ups and Koko Analytics.
Mailchimp Top Bar requires the MC4WP: Mailchimp for WordPress plugin.
Yes. Use the mctb_show_bar filter to control where the bar appears. This example shows it on blog posts only:
add_filter( 'mctb_show_bar', function( $show ) {
return is_single();
} );
This example shows it only on the contact page:
add_filter( 'mctb_show_bar', function( $show ) {
return is_page( 'contact' );
} );
See the WordPress Conditional Tags documentation for other conditions.
Yes. Add a name field and pass its value to the selected Mailchimp audience:
add_action( 'mctb_before_submit_button', function() {
echo '<input type="text" name="NAME" placeholder="Your name" />';
} );
add_filter( 'mctb_subscriber_data', function( $subscriber ) {
if ( ! empty( $_POST['NAME'] ) ) {
$subscriber->merge_fields['NAME'] = sanitize_text_field( $_POST['NAME'] );
}
return $subscriber;
} );
See adding a name field to Mailchimp Top Bar for more details.
Add this CSS to hide the bar on screens narrower than 600 pixels:
@media ( max-width: 600px ) {
#mailchimp-top-bar {
display: none !important;
}
}
The plugin keeps its front-end footprint small. Its JavaScript is under 2 kB when compressed, and the stylesheet loads without blocking page rendering.
Open a topic in the WordPress.org support forum.
| Version | Download | Type |
|---|---|---|
| 1.7.6 | Download | Stable |
| 1.7.5 | Download | Stable |
| 1.7.4 | Download | Stable |
| 1.7.3 | Download | Stable |
| 1.7.2 | Download | Stable |
| 1.7.1 | Download | Stable |
| 1.7.0 | Download | Stable |
| 1.6.2 | Download | Stable |
| 1.6.1 | Download | Stable |
| 1.6.0 | Download | Stable |
| 1.5.6 | Download | Stable |
| 1.5.5 | Download | Stable |
| 1.5.4 | Download | Stable |
| 1.5.3 | Download | Stable |
| 1.5.2 | Download | Stable |
| 1.5.1 | Download | Stable |
| 1.5.0 | Download | Stable |
| 1.4.1 | Download | Stable |
| 1.4.0 | Download | Stable |
| 1.3.2 | Download | Stable |
| 1.3.1 | Download | Stable |
| 1.3 | Download | Stable |
| 1.2.16 | Download | Stable |
| 1.2.15 | Download | Stable |
| 1.2.14 | Download | Stable |
| 1.2.13 | Download | Stable |
| 1.2.12 | Download | Stable |
| 1.2.11 | Download | Stable |
| 1.2.10 | Download | Stable |
| 1.2.9 | Download | Stable |
| 1.2.8 | Download | Stable |
| 1.2.7 | Download | Stable |
| 1.2.6 | Download | Stable |
| 1.2.5 | Download | Stable |
| 1.2.4 | Download | Stable |
| 1.2.3 | Download | Stable |
| 1.2.2 | Download | Stable |
| 1.2.1 | Download | Stable |
| 1.2 | Download | Stable |
| 1.1.3 | Download | Stable |
| 1.1.2 | Download | Stable |
| 1.1 | Download | Stable |
| 1.0.8 | Download | Stable |
| 1.0.7 | Download | Stable |
| 1.0.6 | Download | Stable |
| 1.0.5 | Download | Stable |
| 1.0.4 | Download | Stable |
| 1.0.3 | Download | Stable |
| 1.0.2 | Download | Stable |
| 1.0.1 | Download | Stable |
| 1.0 | Download | Stable |
| Development | Download | Trunk |