'; // WPCS: XSS OK.
}
endif;
if ( ! function_exists( 'bakunin_posted_by' ) ) :
/**
* Prints HTML with meta information for the current author.
*/
function bakunin_posted_by() {
$byline = sprintf(
/* translators: %s: post author. */
esc_html_x( 'by %s', 'post author', 'bakunin' ),
'' . esc_html( get_the_author() ) . ''
);
echo ' ' . $byline . ''; // WPCS: XSS OK.
}
endif;
if ( ! function_exists( 'bakunin_term_link' ) ) :
/**
* Prints HTML with meta information for the categories, tags.
*/
function bakunin_term_link() {
// Hide category and tag text for pages.
if ( 'post' === get_post_type() ) {
$categories = get_the_category();
if ( $categories ) {
echo '