Changeset 7870 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe/content-search.php
- Timestamp:
- 11/18/2018 08:58:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe/content-search.php
r7859 r7870 3 3 * @package wporg-breathe 4 4 */ 5 6 $is_handbook = function_exists( 'wporg_is_handbook' ) && wporg_is_handbook(); 7 5 8 ?> 6 9 … … 8 11 <header class="entry-header"> 9 12 <div class="entry-meta"> 10 <?php if ( ! is_page() && ! wporg_is_handbook()) :13 <?php if ( ! is_page() && ! $is_handbook ) : 11 14 $author_posts_url = get_author_posts_url( get_the_author_meta( 'ID' ) ); 12 15 $posts_by_title = sprintf( … … 20 23 <?php endif; ?> 21 24 22 <?php if ( ! is_page() && ! wporg_is_handbook()) : ?>25 <?php if ( ! is_page() && ! $is_handbook ) : ?> 23 26 <a href="<?php echo esc_url( $author_posts_url ); ?>" title="<?php echo esc_attr( $posts_by_title ); ?>" class="entry-author"><?php the_author(); ?></a> 24 27 <?php endif; ?> 25 <?php if ( ! wporg_is_handbook()) : ?>28 <?php if ( ! $is_handbook ) : ?> 26 29 <span class="entry-date"> 27 30 <?php breathe_date_time_with_microformat(); ?>
Note: See TracChangeset
for help on using the changeset viewer.