%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() ) ); $posted_on = sprintf( esc_html( '%s', __('post date', 'beetech') ), '' . $time_string . '' ); $byline = sprintf( esc_html( '%s', __('post author', 'beetech' )), '' . esc_html( get_the_author() ) . '' ); echo '' . $posted_on . ' ' . $byline . ''; // WPCS: XSS OK. if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; /* translators: %s: post title */ comments_popup_link( sprintf( wp_kses( __( 'Leave a Comment on %s', 'beetech' ), array( 'span' => array( 'class' => array() ) ) ), get_the_title() ) ); echo ''; } } endif; /** * Posted_on function for only archive pages * * @since 1.0.0 */ if ( ! function_exists( 'beetech_archive_posted_on' ) ) : /** * Prints HTML with meta information for the current post-date/time and author. */ function beetech_archive_posted_on() { $time_string = ''; 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() ) ); $posted_on = sprintf( esc_html( '%s', __('post date', 'beetech' )), '' . $time_string . '' ); $byline = sprintf( esc_html( '%s', __('post author', 'beetech' )), '' . esc_html( get_the_author() ) . '' ); echo '' . $posted_on . ' ' . $byline . ''; // WPCS: XSS OK. if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; /* translators: %s: post title */ comments_popup_link( sprintf( wp_kses( __( 'Leave a Comment on %s', 'beetech' ), array( 'span' => array( 'class' => array() ) ) ), get_the_title() ) ); echo ''; } } endif; if ( ! function_exists( 'beetech_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function beetech_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__( ', ', 'beetech' ) ); if ( $tags_list ) { printf( '' . esc_html__( 'Tagged %1$s', 'beetech' ) . '', $tags_list ); // WPCS: XSS OK. } } edit_post_link( sprintf( /* translators: %s: Name of current post */ esc_html__( 'Edit %s', 'beetech' ), the_title( '"', '"', false ) ), '', '' ); } endif; /** * Flush out the transients used in beetech_categorized_blog. */ function beetech_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'beetech_categories' ); } add_action( 'edit_category', 'beetech_category_transient_flusher' ); add_action( 'save_post', 'beetech_category_transient_flusher' );