WordPress 后台文章在后台按作者筛选,WordPress 本身是没有这样的功能,但平常管理起来还是很麻烦的,今天小编教你怎么只显示某一作者下面的所有文章。
方法如下:将下面代码添加到当前 WordPress 模板函数 functions.php 中即可。
- function zhuige_filter_by_the_author() {
- $params = array(
- ‘name’ => ‘author’,
- ‘show_option_all’ => ‘全部创作者’
- );
- if ( isset($_GET[‘user’]) )
- $params[‘selected’] = $_GET[‘user’];
- wp_dropdown_users( $params );
- }
- add_action(‘restrict_manage_posts’, ‘zhuige_filter_by_the_author’);