Not available to Custom Post Types ?
-
Hi
I’ve got it all working fine with standard posts and added the below to the functions.php….but don’t have the option to select a template in the Custom Post Type
Any ideas ?
Thanks
John
/**
* Hooks the WP cpt_post_types filter
*
* @param array $post_types An array of post type names that the templates be used by
* @return array The array of post type names that the templates be used by
**/function my_cpt_post_types( $post_types ) {
$post_types[] = ‘articles’;
return $post_types;
}
add_filter( ‘cpt_post_types’, ‘my_cpt_post_types’ );https://www.ads-software.com/extend/plugins/custom-post-template/
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Not available to Custom Post Types ?’ is closed to new replies.