Linux 软件免费装
Banner图

MC4WP: Mailchimp Top Bar – Email Subscribe Notification Bar

开发者 Ibericode
DvanKooten
hchouhan
lapzor
更新时间 2026年5月11日 14:33
捐献地址: 去捐款
PHP版本: 7.4 及以上
WordPress版本: 7.0
版权: GPL-3.0-or-later
版权网址: 版权信息

标签

mailchimp notification bar call to action top bar subscribe bar

下载

1.0.5 1.0.7 1.0.8 1.1 1.1.3 1.2 1.2.1 1.2.10 1.2.11 1.2.14 1.2.16 1.2.2 1.2.3 1.2.4 1.2.6 1.2.7 1.2.8 1.3 1.3.1 1.3.2 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.0.4 1.2.12 1.7.4 1.6.1 1.6.2 1.7.0 1.5.3 1.5.4 1.5.5 1.7.5 1.0 1.0.1 1.1.2 1.2.5 1.5.6 1.6.0 1.0.3 1.2.13 1.0.2 1.2.9 1.7.1 1.0.6 1.2.15 1.7.2 1.7.3

详情介绍:

Boost your email signups and grow your audience effortlessly with a Mailchimp subscribe bar. This plugin adds a beautiful, customizable notification bar to the top or bottom of your WordPress site, ensuring your call to action gets noticed without disrupting the user experience. As an official add-on for the popular Mailchimp for WordPress plugin, it integrates seamlessly with your existing setup to help you capture more leads.

安装:

Mailchimp for WordPress Since this plugin depends on the Mailchimp for WordPress plugin, you will need to install that first. Installing Mailchimp Top Bar
  1. In your WordPress admin panel, go to Plugins > New Plugin, search for Mailchimp Top Bar and click "Install now"
  2. Alternatively, download the plugin and upload the contents of mailchimp-top-bar.zip to your plugins directory, which usually is /wp-content/plugins/.
  3. Activate the plugin
  4. Set your Mailchimp API key in Mailchimp for WP > Mailchimp Settings.
  5. Select a Mailchimp audience to subscribe to in Mailchimp for WP > Top Bar.
  6. (Optional) Customize the look & position of your opt-in bar.

屏幕截图:

  • The easy-to-use settings page where you can customize your subscribe notification bar colors and behavior.

常见问题:

Can I use this Mailchimp subscribe bar on specific pages only?

Yes, you can easily disable the notification bar on certain pages using a filter. For example, if you only want to load the Top Bar on your blog post pages, you can add this to your theme: add_filter( 'mctb_show_bar', function( $show ) { return is_single(); } ); Another example, this only loads the email capture bar on your "contact" page: add_filter( 'mctb_show_bar', function( $show ) { return is_page('contact'); } ); Have a look at the Conditional Tags page for all accepted functions.

Is it possible to capture names in the notification bar?

Absolutely! You can add a name field to your Mailchimp top bar by using a simple code snippet to display the field and send the data to your audience. ` add_action( 'mctb_before_submit_button', function() { echo ''; }); add_filter( 'mctb_subscriber_data', function( $subscriber ) { if( ! empty( $_POST['NAME'] ) ) { $subscriber->merge_fields['NAME'] = sanitize_text_field( $_POST['NAME'] ); } return $subscriber; }); ` For more details, see our knowledge base article on adding a name field to Mailchimp Top Bar.

How can I hide the email capture bar on mobile devices?

If you prefer not to show the notification bar on smaller screens, you can hide it using custom CSS. Adding the following CSS to your site will hide the bar on all screens smaller than 600px: @media( max-width: 600px ) { #mailchimp-top-bar { display: none !important; } }

Where can I get support for this Mailchimp form?

If you run into any issues or have questions about configuring your subscribe bar, please open a topic on the WordPress.org plugin support forums.

更新日志:

1.7.5 View the full changelog on GitHub