ellaj
Member
Posted 11 months ago #
Hi,
I'm using this plugin and would like the Custom Fields I set up to only display on the Custom Post Type I created. While the fields are showing on the Custom Post Type, they are showing on the regular Post page as well.
Please help.
Thank you.
You will need to check the type of page is being served up:
http://codex.wordpress.org/Conditional_Tags
look under get_post_type()
<?php if('your_post_type' == get_post_type() ):?>
// show fields in here
<?php endif; ?>
ellaj
Member
Posted 11 months ago #