posts() ) : thepost();

/

  • Include the post format-specific template for the content. If you want to
  • use this in a child theme, then include a file called called content-_.php
  • (where _ is the post format) and that will be used instead.
  • /
    gettemplatepart( ‘content’, getpostformat() );

    // If comments are open or we have at least one comment, load the comment template.
    if ( commentsopen() || getcommentsnumber() ) {
    commentstemplate();
    }

    // Previous/next post navigation.
    thepostnavigation( array(
    ‘nexttext’ => ‘ ‘ .
    ‘ . ( ‘Next post:’, ‘toolbox’ ) . ‘ ‘ .
    %title‘,
    ‘prevtext’ => ‘ ‘ .
    ‘ . ( ‘Previous post:’, ‘toolbox’ ) . ‘ ‘ .
    %title‘,
    ) );

    // End the loop.
    endwhile;
    ?>