Show Author’s Latest Posts
Displays a list of the author's most recent posts.
PHP
<?php $recent_posts = new WP_Query(array( 'author' => get_the_author_meta('ID'), 'posts_per_page' => 5 )); while ($recent_posts->have_posts()) : $recent_posts->the_post(); echo '<li><a href="' . get_permalink() . '">' . get_the_title() . '</a></li>'; endwhile; wp_reset_postdata(); ?>
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY