Changeset 41149
- Timestamp:
- 07/25/2017 04:12:29 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-recent-posts.php
r40806 r41149 83 83 <?php while ( $r->have_posts() ) : $r->the_post(); ?> 84 84 <li> 85 <a href="<?php the_permalink(); ?>"><?php get_the_title() ? the_title() : the_ID(); ?></a>85 <a href="<?php the_permalink(); ?>"><?php get_the_title() ? the_title() : _e( '(no title)' ); ?></a> 86 86 <?php if ( $show_date ) : ?> 87 87 <span class="post-date"><?php echo get_the_date(); ?></span>
Note: See TracChangeset
for help on using the changeset viewer.