gpt4 book ai didi

php - Yoast 字段未显示在自定义帖子类型上

转载 作者:行者123 更新时间:2023-12-05 07:53:17 25 4
gpt4 key购买 nike

我正在开发一个具有多种自定义帖子类型的定制网站。但是,Yoast 似乎没有在自定义帖子概览页面(不是各个帖子本身)上显示任何关键字和描述字段。

我花了很多时间在谷歌上搜索解决方案,但添加了:

'public' => true
'hierarchical' => true,
'has_archive' => true,

没有解决问题。请参阅下面的完整代码段:

register_taxonomy_for_object_type('category', 'portfolio'); // Register            Taxonomies for Category
register_taxonomy_for_object_type('post_tag', 'portfolio');
register_post_type('portfolio', // Register Custom Post Type
array(
'labels' => array(
'name' => __('Portfolio', 'html5blank'), // Rename these to suit
'singular_name' => __('Portfolio', 'html5blank'),
'add_new' => __('Add New', 'html5blank'),
'add_new_item' => __('Add New Item', 'html5blank'),
'edit' => __('Edit', 'html5blank'),
'edit_item' => __('Edit Item', 'html5blank'),
'new_item' => __('New Item', 'html5blank'),
'view' => __('View Item', 'html5blank'),
'view_item' => __('View Item', 'html5blank'),
'search_items' => __('Search Item', 'html5blank'),
'not_found' => __('No Item', 'html5blank'),
'not_found_in_trash' => __('No Item found in Trash', 'html5blank')
),
'public' => true,
'menu_icon' => 'dashicons-images-alt2',
'hierarchical' => true, // Allows your posts to behave like Hierarchy Pages
'has_archive' => true,
'supports' => array(
'title',
), // Go to Dashboard Custom HTML5 Blank post for supports
'can_export' => true, // Allows export in Tools > Export
'taxonomies' => array(
'post_tag',
'category'
) // Add Category and Post Tags support
));

有没有人遇到过这个问题?

最佳答案

请使用屏幕选项下拉菜单并确保选中 Yoast SEO。

关于php - Yoast 字段未显示在自定义帖子类型上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32807699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com