'; // WPCS: XSS OK.
}
endif;
if ( ! function_exists( 'bizzoy_posted_by' ) ) :
/**
* Prints HTML with meta information for the current author.
*/
function bizzoy_posted_by() {
$byline = sprintf(
esc_html('%s', 'bizzoy' ),
''
);
echo '
'; // WPCS: XSS OK.
}
endif;
if ( ! function_exists( 'bizzoy_entry_footer' ) ) :
/**
* Prints HTML with meta information for the categories, tags and comments.
*/
function bizzoy_entry_footer() {
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', 'bizzoy' ),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
)
);
echo '';
}
edit_post_link(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__( 'Edit %s', 'bizzoy' ),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
),
'',
''
);
}
endif;
if ( ! function_exists( 'bizzoy_comment' ) ) :
/**
* Prints HTML with meta information for the categories, tags and comments.
*/
function bizzoy_comment() {
// Hide category and tag text for pages.
if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
echo '