%2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); echo '' . esc_html_x( 'Posted on', 'post date', 'photos' ) . ' ' . $time_string . ''; // WPCS: XSS OK. } endif; if ( ! function_exists( 'photos_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function photos_posted_by() { $byline = sprintf( /* translators: %s: post author. */ esc_html_x( 'By %s', 'post author', 'photos' ), '' . esc_html( get_the_author() ) . '' ); echo ' ' . $byline . ''; // WPCS: XSS OK. } endif; if ( ! function_exists( 'photos_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function photos_entry_footer() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( esc_html__( ', ', 'photos' ) ); if ( $categories_list ) { /* translators: 1: list of categories. */ printf( '' . esc_html__( 'Posted in %1$s', 'photos' ) . '', $categories_list ); // WPCS: XSS OK. } /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', esc_html_x( ', ', 'list item separator', 'photos' ) ); if ( $tags_list ) { /* translators: 1: list of tags. */ printf( '' . esc_html__( 'Tagged %1$s', 'photos' ) . '', $tags_list ); // WPCS: XSS OK. } } if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( sprintf( wp_kses( /* translators: %s: post title */ __( 'Leave a Comment on %s', 'photos' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ) ); echo ''; } } endif; if ( ! function_exists( 'photos_editor_link' ) ) : /** * This just outputs the edit link, just removed from photos_entry_footer() * which is where it lives in Underscores. */ function photos_editor_link() { edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'photos' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; if ( ! function_exists( 'photos_post_thumbnail' ) ) : /** * Displays an post thumbnail (if one is set), otherwise displays a blank red square. * * Wraps the post thumbnail in an anchor element on index views, or a div element when on single views. */ function photos_post_thumbnail() { $post_id = get_the_id(); $image = ''; if ( photos_has_post_thumbnail( $post_id ) || is_single() ) { // thumbnail default is 640x640 $image = get_the_post_thumbnail( $post_id, 'photos-grid-thumb' ); } $class = ( empty( $image ) ) ? "post-no-thumbnail" : "post-thumbnail"; $icon = photos_post_icon(); if ( is_singular() ) : $image = get_the_post_thumbnail( $post_id, 'photos-featured' ); if ( ! empty( $image ) ) : ?>
ID ); $prev_thumbnail = ''; $prev_arrow = ''; $previous = ''; } if ( get_next_post( ) ) { $next_post = get_next_post(); // $next_thumbnail = ( ! empty( $next_post ) ) ? get_the_post_thumbnail( $next_post->ID ) : ''; $next_thumbnail = ''; $next_arrow = ''; $next = ''; } // Only add markup if there's somewhere to navigate to. if ( $previous || $next ) { $navigation = ' '; } echo $navigation; // WPCS: XSS OK. } endif;