首页/ 视频课程/ 主题开发课程/第05章、文章输出/ WordPress按作者查询文章操作方法

WordPress按作者查询文章操作方法

2023-06-11 / 387阅

要按作者查询WordPress文章,您可以使用WP_Query类。以下是示例代码,可以帮助您按照作者名称查询文章,并返回markdown格式:

  1. $args = array(
  2. 'author_name' => 'author_name_here',
  3. 'post_type' => 'post',
  4. );
  5. $query = new WP_Query($args);
  6. if ($query->have_posts()) {
  7. while ($query->have_posts()) {
  8. $query->the_post();
  9. $author = get_the_author();
  10. $title = get_the_title();
  11. $excerpt = get_the_excerpt();
  12. $permalink = get_permalink();
  13. $output = "## $title nn";
  14. $output .= "**Author:** $author nn";
  15. $output .= "$excerpt nn";
  16. $output .= "[Read More]($permalink) nn";
  17. echo $output;
  18. }
  19. }
  20. wp_reset_postdata();

在上面的代码中,替换author_name_here为您要查询的作者名。代码将循环遍历所有符合条件的文章,并生成markdown格式的输出。您可以根据需要自定义输出格式。

阅读文章或者观看视频过程中有任何问题,请下方留言或者联系我Q248758228

大家谈论
    我的见解


    目录