Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator keesiemeijer

    (@keesiemeijer)

    In the blog-excerpt.php file of your theme change this:

    <?php the_excerpt(); ?>

    to this:

    <?php
    if ( $wp_query->current_post == 0 ) {
    	the_content();
    } else {
    	the_excerpt();
    }
    ?>

    btw:
    consider creating a child theme instead of editing your theme directly – if you upgrade the theme all your modifications will be lost.

    Thread Starter financialfergy

    (@financialfergy)

    I did this but now if I click on the link to my post either through recent posts or to view post in my dashboard, all I see is the title of the post and not the actual content.

    Thanks.

    https://www.fergusonfinancial.ca/articles-worth-reading/

    Try clicking on a post title.

    Devon

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Advanced Excerpt’ is closed to new replies.