开发者社区> 问答> 正文

怎么才能仅显示作者的帖子呢(不包括admin和editor),该怎么操作

默认代码是显示所有管理员,都能编辑作者的帖子。但是在作者栏我只想显示作者,不要出现管理员。

<?php
    if( have_posts() ):
        while( have_posts() ): the_post();
            the_title();
            the_content();
        endwhile;
    endif;
?>

展开
收起
问问小秘 2019-11-14 18:03:10 393 0
1 条回答
写回答
取消 提交回答
  • '-1', 'author' => $current_user->ID ); $author_posts = new WP_Query($author_query); while($author_posts->have_posts()) : $author_posts->the_post(); ?>
        <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>       
    <?php endwhile;
    

    else :

    // Do Something
    

    endif; ?>

    2019-11-14 18:03:25
    赞同 展开评论 打赏
问答分类:
PHP
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载