$yazarid=xxxx;
$args = array(
'author' => $yazarid,
'orderby' => 'post_date',
'order' => 'ASC',
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
echo '<ul>';
while ( $query->have_posts() ) {
$query->the_post();
echo '<li>' . get_the_title() . '</li>';
}
echo '</ul>';
}Yukarıdaki kodu kullanabilirsiniz. xxxx yazan yere yazılarını göstermek istediğiniz yazarın IDsini yazmanız yeterli.