Changeset 786
- Timestamp:
- 01/24/2004 10:52:22 PM (22 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
index.php (modified) (3 diffs)
-
wp-includes/links.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r760 r786 71 71 <ul> 72 72 <?php get_links_list(); ?> 73 <li >Categories:73 <li id="categories">Categories: 74 74 <ul> 75 75 <?php list_cats(0, 'All', 'name'); ?> 76 76 </ul> 77 77 </li> 78 <li >Search:78 <li id="search">Search: 79 79 <form id="searchform" method="get" action="<?php echo $PHP_SELF; /*$siteurl."/".$blogfilename*/ ?>"> 80 80 <div> … … 84 84 </form> 85 85 </li> 86 <li >Archives:86 <li id="archives">Archives: 87 87 <ul> 88 88 <?php get_archives('monthly'); ?> 89 89 </ul> 90 90 </li> 91 <li >91 <li id="calendar"> 92 92 <?php get_calendar(); ?> 93 93 </li> 94 <li >Other:94 <li id="other">Other: 95 95 <ul> 96 96 <li><a href="<?php echo $siteurl; ?>/wp-login.php">login</a></li> … … 98 98 </ul> 99 99 </li> 100 <li >Meta:100 <li id="meta">Meta: 101 101 <ul> 102 102 <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 546 546 547 547 // 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"; 549 549 550 550 // Call get_links() with all the appropriate params
Note: See TracChangeset
for help on using the changeset viewer.