WordPress后台文章列表添加作者筛选

WordPress后台文章列表添加作者筛选

把下面该代码应放在你的主题的functions.php文件中或者通过某些插件来添加。

//WordPress后台文章列表添加作者筛选
add_action('restrict_manage_posts', function($post_type){
	if(post_type_supports($post_type, 'author')){
		wp_dropdown_users([
			'name'						=> 'author',
			'who'						=> 'authors',
			'show_option_all'			=> '所有作者',
			'hide_if_only_one_author'	=> true,
			'selected'					=> $_REQUEST['author'] ?? 0
		]);
	}
});