下面的代码可以在 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英文原版主题和插件,无破解无授权,转载请保留原链接。
THE END
暂无评论内容