Title: Show only post without comments
Last modified: December 8, 2021

---

# Show only post without comments

 *  [dallass](https://wordpress.org/support/users/dallass/)
 * (@dallass)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/show-only-post-without-comments/)
 * Hello,
 * Is it possible to show only the posts without any comments, please ?
 * Thanks !

Viewing 1 replies (of 1 total)

 *  Plugin Support [Elvin](https://wordpress.org/support/users/ejcabquina/)
 * (@ejcabquina)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/show-only-post-without-comments/#post-15145423)
 * Hi [@dallass](https://wordpress.org/support/users/dallass/)
 * It should be possible but you need to modify the plugin a bit.
 * You must edit the specified plugin code on file wp-show-posts.php . [https://github.com/tomusborne/wp-show-posts/commit/286caf1164db8b6b6f38b85d3a011b519a27f4de](https://github.com/tomusborne/wp-show-posts/commit/286caf1164db8b6b6f38b85d3a011b519a27f4de)
 * (Alternatively, you can use the latest beta – [https://wpshowposts.com/wp-show-posts-1-2-0/](https://wpshowposts.com/wp-show-posts-1-2-0/))
 * You then filter it with PHP snippet:
 *     ```
       add_filter( 'wp_show_posts_shortcode_args', function( $args, $settings ) {
           if( 1234 === (int) $settings['list_id'] ){
       	$args['comment_count'] = array(
                   'value' => 0,
                   'compare' => '=',
               );
         }
         return $args;
       }, 15, 2 );
       ```
   
 * Replace 1234 with the WPSP list id you wish you apply this on.

Viewing 1 replies (of 1 total)

The topic ‘Show only post without comments’ is closed to new replies.

 * ![](https://ps.w.org/wp-show-posts/assets/icon-256x256.png?rev=2846296)
 * [WP Show Posts](https://wordpress.org/plugins/wp-show-posts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-show-posts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-show-posts/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-show-posts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-show-posts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-show-posts/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Elvin](https://wordpress.org/support/users/ejcabquina/)
 * Last activity: [4 years, 6 months ago](https://wordpress.org/support/topic/show-only-post-without-comments/#post-15145423)
 * Status: not resolved