Skip to content

Instantly share code, notes, and snippets.

@danieliser
Last active June 3, 2016 23:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danieliser/ccbe433c2ff09804cc62 to your computer and use it in GitHub Desktop.
Save danieliser/ccbe433c2ff09804cc62 to your computer and use it in GitHub Desktop.
Custom Post Type Support Filter
<?php
add_filter('emodal_post_types', 'my_custom_post_types_for_emodal');
function my_custom_post_types_for_emodal($post_types)
{
$post_types[] = 'portfolio-items';
return $post_types;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment