Ticket #6091: widgets.diff
| File widgets.diff, 688 bytes (added by topncal, 5 years ago) |
|---|
-
wp-includes/widgets.php
877 877 <?php echo $before_title . $title . $after_title; ?> 878 878 <ul> 879 879 <?php while ($r->have_posts()) : $r->the_post(); ?> 880 <li><a href="<?php the_permalink() ?>" ><?php if ( get_the_title() ) the_title(); else the_ID(); ?> </a></li>880 <li><a href="<?php the_permalink() ?>" title="<?php if ( get_the_title() ) the_title(); else the_ID(); ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?> </a></li> 881 881 <?php endwhile; ?> 882 882 </ul> 883 883 <?php echo $after_widget; ?>