我制作了一个自定义帖子类型并制作了一个功能,因此它显示在主页面上。 这是我的代码:
function create_recipe_post_type() {
$recipe_labels = array(
'name' => 'Recipes',
'singular_name' => 'Recipe',
'menu_name' => 'Recipes',
'name_admin_bar' => 'Recipe'
);
register_post_type( 'recipes',
$args = array(
'labels' => $recipe_labels,
'public' => true,
'supports' => array(
'title',
'editor',
'post-formats',
'author',
'thumbnail',
'excerpt',
'comments'
),
'has_archive' => true,
'menu_icon' => 'dashicons-carrot',
'query_var' => 'recipes'
)
);
}
add_action( 'init', 'create_recipe_post_type' );
add_post_type_support( 'recipe_post_type', 'post-formats' );
// Add custom post type posts to main page
add_action( 'pre_get_posts', 'add_recipe_to_main_page' );
function add_recipe_to_main_page( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( 'post_type', array( 'post', 'recipes' ) );
return $query;
}
在文档中我发现我可以使用
访问帖子单{立柱型} .PHP
但如果我创建一个名为
的文件单recipes.php
我仍然没有找到" Page Not Found"错误。 有没有办法解决这个问题,或者我做错了什么?
答案 0 :(得分:1)
有时您必须进入固定链接设置并将其从默认设置更改为自定义设置,然后保存,然后返回并再次将其更改为默认设置。当我遇到这个问题时,对我有用