Наткнулся на этот вопрос в поисках той же функциональности. Я знаю, что это немного поздно, но я думаю, что нашел решение. Посмотрев файл readme с плагином, вы можете добавить его в файл functions.php для нужной вам функциональности.
/**
* 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[] = 'movie';
$post_types[] = 'actor';
return $post_types;
}
add_filter( 'cpt_post_types', 'my_cpt_post_types' );