How to display latest posts with authors image
You could try something like this: <?php $args = array( ‘category’ => 12, ‘post_type’ => ‘post’ ); $postslist = get_posts( $args ); foreach ($postslist as $post) : setup_postdata($post); ?> <h2><a href=”https://wordpress.stackexchange.com/questions/318848/<?php the_permalink(); ?>”><?php the_title(); ?></a></h2> <h4><?php the_author();?></h4> <?php the_excerpt(); echo get_avatar(get_the_author_meta()); endforeach; ?> In the example the category id is set to 12 – just … Read more