对于开放注册的 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();
}
然后,你点击“文章”这个标题,就可以进行排序啦:
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
这个可以在前台实现吗
这个就需要额外进行开发实现了
不错。
什么时候更新WPDX主题吧那个用户列表页也按文章数排序吧
尝试过,按文章数排序这个参数虽然在官方文档有说明,但是测试一直没有成功
是否考虑使用 https://github.com/WP-API/WP-API 呢
可以啊,
//多用户文章排序
add_filter(‘manage_users_sortable_columns’, function ($columns) {
$columns[‘posts’] = ‘post_count’;
return $columns;
});
//文章列表评论排序
add_filter(‘manage_edit-post_sortable_columns’, function ($columns) {
$columns[‘comment_count’] = ‘comment_count’;
return $columns;
});
抱歉,看错了。