Support » Fixing WordPress » Output links in Post page

  • My blogs homepage displays the most recent posts. However the links that are contained in the text for those posts do not get output on the homepage. I can click on the post title to read the post and see the links but I want them to display and be active on the list page as well. Can someone please point me in the right direction? I am using 3.0.1 with the twenty ten theme

Viewing 1 replies (of 1 total)
  • Try editing loop.php and changing:

    <?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>

    to:

    <?php if ( ( is_archive() !is_home() ) || is_search() ) : // Only display excerpts for archives - except the home page - and search. ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Output links in Post page’ is closed to new replies.