1

WordPress如何在后台文章列表中按作者过滤帖子

 2 years ago
source link: https://www.huhexian.com/26702.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

WordPress如何在后台文章列表中按作者过滤帖子

2022-02-1413:03:11评论649字

相信很多人的网站都有好几个编辑吧?文章很多的时候在后台管理查找起来不是很方便,今天教大家一个小技巧,可以在WordPress后台通过作者筛选文章,只显示某一个作者下面的文章列表。

WordPress如何在后台文章列表中按作者过滤帖子将以下代码添加到你当前所使用的WordPress主题的functions.php文件中,我们XinTheme出品的WordPress主题自身已经包含了这个功能,无需再添加以下代码。
  1. /** --------------------------------------------------------------------------------- *
  2. * 在WordPress后台文章列表中按作者过滤帖子
  3. * --------------------------------------------------------------------------------- */
  4. function dahuzi_filter_by_the_author() {
  5. $params = array(
  6. 'name' => 'author',
  7. 'show_option_all' => '全部作者'
  8. if ( isset($_GET['user']) )
  9. $params['selected'] = $_GET['user'];
  10. wp_dropdown_users( $params );
  11. add_action('restrict_manage_posts', 'dahuzi_filter_by_the_author');

该过滤器不仅适用于帖子,而且适用于页面和自定义帖子类型。


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK