• Resolved deltaskelta

    (@deltaskelta)


    I have a theme called wordstrap ( https://www.radbrains.com )

    The posts do not show up correctly in the main page, all the formatting and pictures are gone. If you go to the site and click on one of the posts, you will see how it should look.

    How can I make the theme display the posts correctly on the homepage? I really like the theme and want to keep it, but this would be a deal-breaker if I cannot fix this…

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Looks like the front is use excerpt and not content. If it is calling the_excerpt() function instead of the_content() then that is what happens.

    Thread Starter deltaskelta

    (@deltaskelta)

    <?php
            // Display content or excerpt
            if (is_single() OR is_page()) the_content();
            else the_excerpt();

    I found this within the code. I will try to play around with it to get it right, but in case I do not get it right…What should I change it to…?

    if (is_single() OR is_page() OR is_home()) the_content();
            else the_excerpt();

    Change it to that.

    Thread Starter deltaskelta

    (@deltaskelta)

    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘wordstrap theme not showing posts right (formatting)?’ is closed to new replies.