通过将此代码添加到函数中,我创建了category函数。php:
function page_category() {
register_taxonomy_for_object_type(\'category\', \'page\');
}
// Add to the admin_init hook of your theme functions.php file
add_action( \'init\', \'page_category\' );
但问题是,当我转到一个类别页面时,该页面不会显示该类别中的页面。我读这篇文章是因为分类只能显示帖子。
有没有什么方法可以在不使用插件的情况下按类别显示页面?
谢谢