ezetech/wp-mailchimp

WordPress Plugin for MailChimp Integration

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:wordpress-plugin

v0.1 2017-02-22 08:40 UTC

This package is not auto-updated.

Last update: 2025-06-16 19:55:07 UTC


README

This plugin made for Eze.tech projects.

Install

Copy ezetech-mailchimp folder to plugin folder or use composer install ezetech/wp-mailchimp command.

Mailchimp set up

  • Get your MailChimp API key.
  • Make the template with Custom HTML Template. More info
  • You should have mc:edit='body' in the template. More info

Usage

Add to your function.php in active theme:

$api_key = 'your_mailchimp_api_key'; //required
$template_id = 123456; //required
$taxonomy = 'mailchimp_custom_taxonomy_name'; //default mailchimp_list
$email_post_type = 'email_post_type'; //default 'post'
add_theme_support('ezetech-mailchimp', $api_key, $template_id, $email_post_type, $taxonomy);