如何将WordPress中的所有帖子设置在一个类别中

时间:2014-11-05 作者:Rasha Sami

我有9587个职位,在2类。

我需要删除一个类别并将其设置为一个类别,例如,我在(新闻、热门新闻)类别中有帖子。

因此,我需要在一个类别(新闻)这篇文章。

怎么能做到呢??

1 个回复
SO网友:vancoder

最简单的方法是使用这个优秀的插件:https://wordpress.org/plugins/term-management-tools/

一旦安装,它将允许您按照自己的意愿合并类别。

结束

相关推荐

Show Pages in Categories

通过将此代码添加到函数中,我创建了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\' ); 但问