最简单的方法是向页面添加类别。
您可以使用插件:
https://wordpress.org/plugins/add-category-to-pages/
或者,如果您使用的是子主题,请在函数中插入此代码。子主题目录中的php:
function myplugin_settings() {
// Add tag metabox to page
register_taxonomy_for_object_type(\'post_tag\', \'page\');
// Add category metabox to page
register_taxonomy_for_object_type(\'category\', \'page\');
}
// Add to the admin_init hook of your theme functions.php file
add_action( \'init\', \'myplugin_settings\' );
另一种方法是创建自定义帖子。这方面也有插件。
不同之处在于,一篇帖子可以有多个类别,而自定义帖子类似于帖子或页面。事实上,您正在默认帖子和页面旁边添加另一种帖子类型。