有人知道如何在管理面板的编辑栏中显示“所有标签”,而不是“最常用的标签”?这应该能够通过单击来选择尚未使用的标签!
以下是我的意思截图:screenshot
非常感谢你。
好的,我已经这样解决了:转到wp admin->包含并打开ajax操作。php文件,位于wp\\u ajax\\u get\\u tagcloud函数编辑行658中,如下所示:
$tags = get_terms( $taxonomy, array( \'number\' => 45, \'orderby\' => \'count\', \'order\' => \'DESC\' ) );
并将其更改为:$tags = get_terms( $taxonomy, array( \'number\' => 45, \'orderby\' => \'count\', \'order\' => \'DESC\', \'hide_empty\' => 0 ) );
这对我来说很有用;希望是有用的。