Display emails of users who already posted at least once
You can place following code in your functions.php file & use the shortcode [myblogwriters min_posts=”1″] anywhere in the page/post content and can also change the min_posts value 🙂 function show_min_one_post_writers($atts){ global $wpdb; $attrs = shortcode_atts( array( ‘min_posts’ => ” ), $atts ); $min_posts = $attrs[‘min_posts’]; $authors = $wpdb->get_col(“SELECT `post_author` FROM (SELECT `post_author`, COUNT(*) AS `count` … Read more