• <?php
    	$pp = new WP_Query(array(
    		'post_type' => array( 'post','episode','projects' ),
    		'orderby' => 'comment_count',
    		'posts_per_page' => 4
    		));
    
    		while ($pp->have_posts()) : $pp->the_post();
    ?>

    Will this plugin work with arranging my posts based on comment count?

The topic ‘[Plugin: Facebook Comments for WordPress] does this plugin work with orderby' => 'comme’ is closed to new replies.