• Kreachure

    (@kreachure)


    Hi, I’ve been trying to find a plugin that can make category pages in my Graphene theme blog not show as excerpts but full blog posts. This theme does have an option to change all excerpts to blog posts, but that’s not what I want (I want to keep excerpts in search results, tags, etc.) Does anyone know a way to accomplish this (with code or a plugin)? Thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • vtxyzzy

    (@vtxyzzy)

    I do not use that theme, but this is what I would try. Make a copy of loop.php named loop-category.php and change line 158 from this:

    <?php the_excerpt(); ?>

    to this:

    <?php the_content(); ?>
    Thread Starter Kreachure

    (@kreachure)

    Thank you so much for your reply.

    It works! I changed the line and tested it, and now categories show full posts instead of excerpts. But, it still showed the excerpt thumbnail which messed up the rest of the post. I had to remove the code for generating the thumbnail which was thankfully right above the line, and now the posts show perfectly. Once again, thank you very much vtxyzzy! 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Category pages like blog posts (not excerpts)’ is closed to new replies.