deltaskelta
Member
Posted 9 months ago #
I have a theme called wordstrap ( http://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
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.
deltaskelta
Member
Posted 9 months ago #
<?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.
deltaskelta
Member
Posted 9 months ago #