Make WordPress Core


Ignore:
Timestamp:
03/28/2007 05:31:28 PM (18 years ago)
Author:
ryan
Message:

Don't output empty list. Props pishmishy. fixes #3779

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/default/sidebar.php

    r4983 r5127  
    1212            -->
    1313
    14             <li>
     14            <?php if ( is_404() || is_category() || is_day() || is_month() ||
     15                        is_year() || is_search() || is_paged() ) {
     16            ?> <li>
     17
    1518            <?php /* If this is a 404 page */ if (is_404()) { ?>
    1619            <?php /* If this is a category archive */ } elseif (is_category()) { ?>
     
    3740
    3841            <?php } ?>
    39             </li>
     42               
     43            </li> <?php }?>
    4044
    4145            <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
Note: See TracChangeset for help on using the changeset viewer.