Add Easy Modal options to custom post types.

If you have custom post types set up either via a plugin or theme you may want to add modals to these post types. To show the easy modal options panel for custom post types add the following to your themes functions.php file. Simply change the post types added below to match those you are using.

add_filter('em_post_types', 'my_em_post_types');
function my_em_post_types($post_types)
{
    $post_types[] = 'product';
    $post_types[] = 'faq';
    $post_types[] = 'article';
    $post_types[] = 'video';
    $post_types[] = 'diy';
    return $post_types;
}

[edd_social_discount]