WordPress后台文章在后台怎么按作者筛选

追格官方小助手/ 2022年03月06日/ WordPress/ 浏览 1946


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');


发表评论

暂无评论,抢个沙发...

客服 工单