Remove Display of Authors Who Have Not Posted
-
You could add this as an option rather easily.
/* Get the author ID. */
$id = $author->ID;/* Remove Authors Who Have Not Posted */
$user_post_count = count_user_posts( $id , ‘post’ );
if ( ! $user_post_count ) {
continue;
}
/* End Remove Authors Who Have Not Posted */do_action( ‘display_authors_widget_before’ ); // action hook display_authors_widget_before
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Remove Display of Authors Who Have Not Posted’ is closed to new replies.