对于开放注册的 WordPress 多用户博客而言,我们可能需要了解用户所发布的文章数量,虽然 WordPress 后台的用户列表有“文章”这个列,但是默认是不支持排序的,无法快速查看发布了文章的用户以及他们的文章数量,要解决这个问题,我们只需要将下面的代码添加到主题的 functions.php 即可:
//文章数排序 /* Plugin Name: Sort Users by Post Count Description: Add a column to the Users page in the admin to sort users by post counts.https://github.com/ksemel/sort-users-by-post-count Version: 1.0 Author: Katherine Semel */ if ( ! class_exists(\'Sort_Users_By_Post_Count\') ) { class Sort_Users_By_Post_Count { function Sort_Users_By_Post_Count() { // Make user table sortable by post count add_filter( \'manage_users_sortable_columns\', array( $this, \'add_custom_user_sorts\' ) ); } /* Add sorting by post count to user page */ function add_custom_user_sorts( $columns ) { $columns[\'posts\'] = \'post_count\'; return $columns; } } $Sort_Users_By_Post_Count = new Sort_Users_By_Post_Count(); }
然后,你点击“文章”这个标题,就可以进行排序啦:
文章来自Vivi源码http://www.vxiaotou.com转载请注明出处,并保留本链接,谢谢!
常见问题FAQ
- 免费下载或者VIP会员专享资源能否直接商用?
- 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
- 提示下载完但解压或打开不了?
- 找不到素材资源介绍文章里的示例图片?
- Vivi资源网