• dsquared

    (@dsquared)


    <li id="Blogroll">
     <h2>Blogroll</h2>
      <ul>
     <?php get_links(-1, '<li>', '</li>', ' - '); ?>
      </ul>
      </li>
Viewing 4 replies - 1 through 4 (of 4 total)
  • Chris_K

    (@handysolo)

    Have a look at is_home at the Conditional_Tags page in the codex.

    Thread Starter dsquared

    (@dsquared)

    is_home() – need guidance on placement

    Chris_K

    (@handysolo)

    Try something like this?

    <?php if (is_home()){ ?>
      <li id="Blogroll">
        <h2>Blogroll</h2>
        <ul>
          <?php get_links(-1, '<li>', '</li>', ' - '); ?>
        </ul>
      </li>
    <?php } ?>
    Thread Starter dsquared

    (@dsquared)

    You sir, totally rock!

    Thanks a million.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘how would I need to change this to show up only on the home page?’ is closed to new replies.