Is there a way to have an specific page to load only the custom field template applied to that page?
I have a product's page and a custom field template called: "product's template" specific for that page. Besides that I also have about ten others CFtemplates that won't be used on that page.
In other words, I am looking for a way that the dropdown will only show the specific CFT and not the ones that are not necessary on that page.
This is the way i am calling the custom field:
'`<?php if( get_post_meta($post->ID, "Product1Thumb", true) ): ?>
<?php echo get_post_meta($post->ID, "Product1Thumb", true); ?>
<?php endif; ?>`'
I appreciate any help.