%2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( DATE_W3C ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( DATE_W3C ) ), esc_html( get_the_modified_date() ) ); $posted_on = sprintf( /* translators: %s: post date. */ esc_html_x( 'Posted on %s', 'post date', 'blogbuster' ), '' . $time_string . '' ); echo '' . $posted_on . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } endif; if ( ! function_exists( 'blogbuster_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function blogbuster_posted_by() { $byline = sprintf( /* translators: %s: post author. */ esc_html_x( 'by %s', 'post author', 'blogbuster' ), '' . esc_html( get_the_author() ) . '' ); echo ' ' . $byline . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } endif; if ( ! function_exists( 'blogbuster_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function blogbuster_entry_footer() { $tags = get_the_tags(); if ( $tags && count( $tags ) > 0 ) { $limited_tags = array_slice( $tags, 0, 2 ); // Get only the first two tags $tag_links = array_map( function ( $tag ) { return '' . esc_html( $tag->name ) . ''; }, $limited_tags ); $tags_list = implode( esc_html_x( ', ', 'list item separator', 'blogbuster' ), $tag_links ); if ( $tags_list ) { printf( '' . esc_html__( ' %1$s', 'blogbuster' ) . '', $tags_list ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } } 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', 'blogbuster' ), array( 'span' => array( 'class' => array(), ), ) ), wp_kses_post( get_the_title() ) ) ); echo ''; } edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'blogbuster' ), array( 'span' => array( 'class' => array(), ), ) ), wp_kses_post( get_the_title() ) ), '', '' ); } endif; if ( ! function_exists( 'blogbuster_single_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments for single post page. */ function blogbuster_single_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 */ $tags_list = get_the_tag_list( '', esc_html_x( ', ', 'list item separator', 'blogbuster' ) ); if ( $tags_list ) { /* translators: 1: list of tags. */ printf( '' . esc_html__( ' %1$s', 'blogbuster' ) . '', $tags_list ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } } edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'blogbuster' ), array( 'span' => array( 'class' => array(), ), ) ), wp_kses_post( get_the_title() ) ), '', '' ); } endif; if ( ! function_exists( 'blogbuster_post_thumbnail' ) ) : /** * Displays an optional post thumbnail. * * Wraps the post thumbnail in an anchor element on index views, or a div * element when on single views. */ function blogbuster_post_thumbnail() { if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) { return; } if ( is_singular() ) : ?>
absint( $list_count ) ) ); if ( empty( $categories_list ) ) { return; } echo ''; } endif; if ( ! function_exists( 'blogbuster_post_navigation_thumbnail' ) ) : /** * Filter to add thumbnail to post navigation links */ function blogbuster_post_navigation_thumbnail( $output ) { // Get previous and next posts $prev_post = get_previous_post(); $next_post = get_next_post(); if ( $prev_post ) { $prev_thumb = get_the_post_thumbnail( $prev_post->ID, 'thumbnail' ); $output = str_replace( '%thumbnail', $prev_thumb, $output ); } if ( $next_post ) { $next_thumb = get_the_post_thumbnail( $next_post->ID, 'thumbnail' ); $output = str_replace( '%thumbnail', $next_thumb, $output ); } return $output; } endif; add_filter( 'the_content', 'blogbuster_post_navigation_thumbnail' );