Thanks esmi. I did as you said but got:
Parse error: syntax error, unexpected ‘:’
When you say this:
<?php if( !in_array( $post->post_author, $excl_authors ) :?>
Do you mean this:
<?php if( !in_array( $post->post_author, $excl_authors ) ) :?>
or this:
<?php if( !in_array( $post->post_author, $excl_authors ) ) ;?>
I tried all variations above but then got error with your final change “endif;endwhile”.
Also this code above does not limit to the most recent 5 posts. I want to limit to 5 recent posts, and 1 per/author on the sidebar.
PS- I use 2.91 version of WP.