• Resolved rsaldana2008

    (@rsaldana2008)


    So im trying to get full text post within my blog for the home page and categories. I achieved getting it for the home page but not the categories.

    My setup is as follows…

    <?php the_content(‘Read the rest of this entry »’); ?>

    if im correct “the_content” should be correct to show full text post.
    Now, I wasnt able to get full text post on the home page until I override the behavior with global $more with…

    <?php
    // Declare global $more, before the loop.
    global $more;
    ?>

    My blog is at https://www.golfblogdaily.com

    So…how can i get full text post within my categories and home page? Thanks!!!

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

    (@rsaldana2008)

    anyone know? How can i get a full text post on my category pages?

    Thread Starter rsaldana2008

    (@rsaldana2008)

    I just figured out how to fix this. I realized that I only had the_content on the index.php file but the_excerpt was still on my archive.php file.

    I simply looked in my archive.php file and changed where it said the_excerpt to the_cotent and it worked!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘full text post with categories’ is closed to new replies.