Facebook plugin shows existing comments
I don’t use this plugin, but it looks like this comment template is loaded with add_filter( ‘comments_template’, array( ‘Facebook_Comments’, ‘comments_template’ ) ); The simplified structure of this comment template looks like: if ( have_comments() ) : // … wp_list_comments( $_comment_options ); // … endif; $_facebook_comments = Facebook_Comments::comments_box(); if ( $_facebook_comments ) { do_action( ‘facebook_comment_form_before’ ); … Read more