WordPress 后台用户列表怎么按文章数排序,在当前 WordPress 模板函数文件 functions.php 添加以下代码即可:
- //wp后台按文章数排序
- /*
- 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();
- }
文章連結:https://www.wuyanshuo.cn/1347.html
更新時間:2022年9月15日
1、本站所有資源均不添加推廣檔案或浮水印,壓縮包內若有廣告檔案和浮水印請勿輕易相信。
2、本站資源均為兩層壓縮,第一層7z(尾碼若為wys,請自行修改為7z)有解壓密碼; 第二層zip或cbz,無解壓密碼,可直接使用漫畫類軟件程式查看; 詳情可參攷解壓教程。
3、本站大部分內容均收集於網絡! 若內容侵犯到您的權益,請發送郵件至:admin#wysacg.top我們將第一時間處理! 資源所需價格並非資源售賣價格,是收集、整理、編輯詳情以及本站運營的適當補貼,並且本站不提供任何免費技術支援。 所有資源僅限於參攷和學習,版權歸原作者所有!