Changeset 25675 for trunk/src/wp-includes/default-widgets.php
- Timestamp:
- 10/02/2013 10:50:50 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/default-widgets.php
r25332 r25675 575 575 <?php while ( $r->have_posts() ) : $r->the_post(); ?> 576 576 <li> 577 <a href="<?php the_permalink() ?>" title="<?php echo esc_attr( get_the_title() ? get_the_title() : get_the_ID() ); ?>"><?php if ( get_the_title() ) the_title(); elsethe_ID(); ?></a>577 <a href="<?php the_permalink(); ?>"><?php get_the_title() ? the_title() : the_ID(); ?></a> 578 578 <?php if ( $show_date ) : ?> 579 579 <span class="post-date"><?php echo get_the_date(); ?></span>
Note: See TracChangeset
for help on using the changeset viewer.