摘要:使用WordPress多用户的网站查看用户文章发布数量,默认情况下并非智能排序,但是我们可以添加WordPress用户列…
使用WordPress多用户的网站查看用户文章发布数量,默认情况下并非智能排序,但是我们可以添加WordPress用户列表文章排序功能,
把下面的代码添加到您的当前使用的wordpress主题文件functions.php 即可:
给WordPress用户列表添加文章数量排序
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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();
}
|
添加完以上代码WordPress用户列表文章排序您的主题就支持WordPress用户列表文章排序了,您可以点击用户的‘文章’就排序。
来源:http://www.wazhuti.com/3652.html