What do I change this code to?

by 10 replies
12
I want to have a static menu at the top of each page on my site.

<ul>
<li<?php if (is_home()) echo " class=\"selected\""; ?>><a href="<?php bloginfo('url'); ?>">Home</a></li>
<?php wp_list_pages('title_li=&depth=1'); ?>
</ul>

This is the code that's there - I just want regular links
#programming #change #code
  • <ul>
    <li><a href="http://www.mysite.com">Home</a></li>
    <li><a href=http://www.mysite.com/love>Love</a></li>
    <li><a href=http://www.mysite.com/life>Life</a></li>
    <li><a href=http://www.mysite.com/peace>Peace</a></li>
    </ul>


    Would it go like this maybe?
    • [1] reply
    • this will work if you add the styles to your sheet for

      ul {} and li {}
      add your style code between the {}

      if they are already there you can do the rest by making adjustments in your stylesheet for layout

      you would be better off creating styles to apply to the menu only thoe, as the code you have above, if you style it like that it will apply to any ul or li

      create your own styles then use

      <ul class="class name">
      <li class="class name"><a href="#"></a></li>
      <li class="class name"><a href="#"></a></li>
      <li class="class name"><a href="#"></a></li>
      <li class="class name"><a href="#"></a></li>
      </ul>
      • [1] reply
  • Yep that was it. Leave me alone with myself long enough and I'll probably figure it out.

    Am I talking to myself?
    • [2] replies

    • that is one of the coolest videos I have seen in a while lol
    • nice video!
      I'm wondering how the tires managed to defy gravity and at the very end the somebody pressed the breaks really hard.
      Everything else is ok
  • Definitely an awesome video. I feel like I am setting that up, but at the beginning and damn, I've been doing this 11 years! lol
  • Its wordpress right? why don't use wp_nav_menu? this feature comes with wordpress 3.0, see the documentation.

    Function Reference/wp nav menu « WordPress Codex
  • All the automation in that model of Honda. Nice video.

Next Topics on Trending Feed