在 WordPress 可以透過 get_author_posts_url() 來取得特定作者發表的文章,裡面只要丟進去作者的 ID 即可,作者的 ID 可以透過這篇文章的說明取得。

get_author_posts_url( int $author_id, string $author_nicename = '' )

Parameters

$author_id
  (int) (Required) Author ID.
$author_nicename
  (string) (Optional) The author's nicename (slug).
  Default value: ''

 

Reference