Viewing 3 replies - 1 through 3 (of 3 total)
  • Same here

    Same with me.

    I figured it out.

    The infinite transporter code looks for the template file called “content”.

    In the transporter.php file on lines 1136-1143:

    while ( have_posts() ) {
    			the_post();
    			get_template_part( 'content', get_post_format() );
    
    		        if( is_single() ) {
    				comments_template();
    			}
    		}

    In my case, because my theme used a single.php without calling out to a content template, it was getting nothing except the call to comments_template() here.

    I fixed this by altering my single.php theme to use get_template_part('content'), and made a content.php to house my single post code.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Only Loading Comments?’ is closed to new replies.