• I like pretty much everything about this theme except the inability to change whether the full blog post or an excerpt is displayed. Does anyone know how to change the code to show the full post?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter nrepair

    (@nrepair)

    No one knows how to show the full post on this theme? I asked two months ago, but never got a response.

    Go into Appearance -> Editor.

    On the right side, select content.php.

    Change the following:

    <div <?php hybrid_attr( 'entry-summary' ); ?>>
    <?php the_excerpt(); ?>
    </div><!-- .entry-summary -->

    to:

    <div <?php hybrid_attr( 'entry-summary' ); ?>>
    <?php the_content(); ?>
    </div><!-- .entry-summary -->
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Show full post instead of excerpt’ is closed to new replies.