1

是否可以按用户角色过滤主页博客文章?我的目标是只显示角色类型为“编辑”的用户撰写的帖子。

4

2 回答 2

5

在主题的根文件夹中创建一个文件并将其另存为,home.php然后将以下代码粘贴到该文件中,您就完成了。

<?php
    get_header();
    $ids = get_users( array('role' => 'editor' ,'fields' => 'ID') );
    $args = array(
        'post_type'=>'post',
        'post_status'=>'publish',
        'author' => implode(',', $ids)
    );

    $query = new WP_Query($args);
    if($query->have_posts()) :
        while ($query->have_posts()) : $query->the_post();
            // code goes here, for example
            echo the_title() . '<br />'; // prints title of each post
        endwhile;
    endif;
    get_sidebar();
    get_footer();
?>
于 2013-10-21T16:48:10.633 回答
1

在您的 home.php 或 front-page.php 下。添加以下代码:

<?php 

$args = array (
    'role' => 'influencer',
    'fields' => 'ID',
);

$user_ids = get_users($args);

$query_posts = new WP_Query( 
    array( 
        'post_type' => 'post',
        'author__in' => $user_ids
    )
);

var_dump($query_posts);
?>

注意:我只是使用 var_dump 函数来按作者角色显示帖子。您可以使用wordpress或纯php循环的while循环和have_posts

于 2018-03-01T08:17:56.870 回答