Ticket #22436: default-widgets.diff
| File default-widgets.diff, 837 bytes (added by , 13 years ago) |
|---|
-
wp-includes/default-widgets.php
571 571 <ul> 572 572 <?php while ( $r->have_posts() ) : $r->the_post(); ?> 573 573 <li> 574 <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(); else the_ID(); ?></a>574 <a href="<?php the_permalink() ?>" title="<?php echo esc_attr( get_the_title() ? get_the_title() : get_the_ID() ); ?>"><?php if ( get_the_title() ) echo esc_html( get_the_title() ); else esc_html( get_the_ID() ); ?></a> 575 575 <?php if ( $show_date ) : ?> 576 576 <span class="post-date"><?php echo get_the_date(); ?></span> 577 577 <?php endif; ?>