Make WordPress Core

Changeset 786


Ignore:
Timestamp:
01/24/2004 10:52:22 PM (22 years ago)
Author:
alex_t_king
Message:

added id's and classes to li's in the menu to help in skinning

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r760 r786  
    7171<ul>
    7272    <?php get_links_list(); ?>
    73  <li>Categories:
     73 <li id="categories">Categories:
    7474    <ul>
    7575    <?php list_cats(0, 'All', 'name'); ?>
    7676    </ul>
    7777 </li>
    78  <li>Search:
     78 <li id="search">Search:
    7979    <form id="searchform" method="get" action="<?php echo $PHP_SELF; /*$siteurl."/".$blogfilename*/ ?>">
    8080    <div>
     
    8484    </form>
    8585 </li>
    86  <li>Archives:
     86 <li id="archives">Archives:
    8787    <ul>
    8888     <?php get_archives('monthly'); ?>
    8989    </ul>
    9090 </li>
    91  <li>
     91 <li id="calendar">
    9292    <?php get_calendar(); ?>
    9393 </li>
    94  <li>Other:
     94 <li id="other">Other:
    9595    <ul>
    9696        <li><a href="<?php echo $siteurl; ?>/wp-login.php">login</a></li>
     
    9898    </ul>
    9999 </li>
    100  <li>Meta:
     100 <li id="meta">Meta:
    101101    <ul>
    102102        <li><a href="<?php bloginfo('rss2_url'); ?>" title="Syndicate this site using RSS"><abbr title="Really Simple Syndication">RSS</abbr> 2.0</a></li>
  • trunk/wp-includes/links.php

    r678 r786  
    546546
    547547            // Display the category name
    548             echo '  <li>' . stripslashes($cat['cat_name']) . "\n\t<ul>\n";
     548            echo '  <li class="links">' . stripslashes($cat['cat_name']) . "\n\t<ul>\n";
    549549
    550550            // Call get_links() with all the appropriate params
Note: See TracChangeset for help on using the changeset viewer.