WordPress 撰写文章时,点击“从常用标签中选择”只显示45个常用的标签,很多情况下还需手工再次输入标签,这样的限制感觉很不方便,通过下面的方法可以解除这个限制,显示全部标签。
以wordpress 3.5.1版为例(其它版本可能有所不同)。文章源自陈学虎-https://chenxuehu.com/article/2013/05/1107.html
打开wordpress程序wp-admin\includes目录的 ajax-actions.php 文件,在651行查找:文章源自陈学虎-https://chenxuehu.com/article/2013/05/1107.html
[php]$tags = get_terms( $taxonomy, array( 'number' => 45, 'orderby' => 'count', 'order' => 'DESC' ) );[/php]文章源自陈学虎-https://chenxuehu.com/article/2013/05/1107.html
修改其中的数字:45 即可。还可以修改一下排列方式,将降序排列“DESC”改为升级序排列“ASC”。文章源自陈学虎-https://chenxuehu.com/article/2013/05/1107.html
另外,如果认为将“从常用标签中选择”改为“所有标签”更为适合,可以接着折腾:文章源自陈学虎-https://chenxuehu.com/article/2013/05/1107.html
打开wp-admin\includes目录的 meta-boxes.php 在第363行查找:文章源自陈学虎-https://chenxuehu.com/article/2013/05/1107.html
[php]choose_from_most_used[/php]文章源自陈学虎-https://chenxuehu.com/article/2013/05/1107.html
替换为:文章源自陈学虎-https://chenxuehu.com/article/2013/05/1107.html
[php]all_items[/php]文章源自陈学虎-https://chenxuehu.com/article/2013/05/1107.html
这样就比较完美了。文章源自陈学虎-https://chenxuehu.com/article/2013/05/1107.html
不过当更新程序后,还需再次修改,蛋疼啊...
评论