下面的代码可以在 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
]);
}
});
标签:wordpress教学