我在 WordPress 3.6.1 上有一个网站,并使用以下代码为食谱创建了一个自定义帖子类型:
add_action('init', 'register_cpt_my_recipes');
function register_cpt_my_recipes() {
$args = array(
'hierarchical' => false,
'supports' => array('title', 'editor', 'custom-fields' ,'tag' , 'excerpt', 'thumbnail'),
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'show_in_nav_menus' => false,
'publicly_queryable' => true,
'exclude_from_search' => false,
'has_archive' => true,
'query_var' => true,
'can_export' => true,
/* Not necessary but added as a solution */
'rewrite'=> array('slug' => 'my_recipes', 'with_front' => true),
'capability_type' => 'post'
);
register_post_type('my_recipes', $args);
/* Not necessary but added as a solution */
flush_rewrite_rules(false);
}
我创建了 archive-my_recipes.php 自定义模板文件,但是每当我导航到 mysite/my_recipes/ 时,我都会得到来自 archive.php 的代码,其中包含我所有的帖子,而不仅仅是来自我的自定义帖子类型的帖子。我尝试了 taxonomy-my_recipes.php 但也没有用。
single-my_recipes.php 也可以正常工作。 我的自定义帖子类型的帖子出现在主循环中。
我在此处和此处的 wordpress 文档站点上阅读了有关该主题的信息, 我还在这里阅读了类似问题的答案,但还没有可行的解决方案。
还在这里尝试了解决方案:
function namespace_add_custom_types( $query ) {
if( is_category() || is_tag() && empty( $query->query_vars['suppress_filters'] ) ) {
$query->set( 'post_type', array(
'post', 'your-custom-post-type-here'
));
return $query;
}
}
add_filter( 'pre_get_posts', 'namespace_add_custom_types' );