• Resolved gregsinibaldi

    (@gregsinibaldi)


    I have the following site:

    burnlistmusic.com

    I’m trying to figure out how to display an entire post rather than have it shorten the post and provide a link.

    I’m assuming this is in the theme options somewhere but I cant seem to find anything. I’m also not entirely sure what I’m looking for!

    Thanks for any guidance…

Viewing 5 replies - 1 through 5 (of 5 total)
  • Settings > reading is an option for that.

    I hope I got it right in English – I have it in Estonian.

    Thread Starter gregsinibaldi

    (@gregsinibaldi)

    Thanks Arru

    I took a look at the reading settings. Under “For each article in a feed, show” I have full text selected but it doesn’t seem to work…

    That’s for your RSS feed – not your page displays. You would need to edit the theme’s loop.php template file and replace:

    <?php if( function_exists( 'the_post_thumbnail' ) && has_post_thumbnail() ) :?>
    <div class="postcontent with-thumb">
    <?php the_post_thumbnail( 'index-post-thumbnail' );
    else :?><div class="postcontent"><?php endif?>
    <?php the_excerpt(); ?></div>

    with:

    div class="postcontent"><?php the_content(); ?></div>

    Thread Starter gregsinibaldi

    (@gregsinibaldi)

    Awesome esmi. That did it. Thanks!

    No problem. If you have any further problems, you can always post on the Quirm.net theme forum. It’s a little quieter in there. ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Display entire post…’ is closed to new replies.