%2$s';
$time_string = ' %1$s %2$s';
$time_string = sprintf(
$time_string,
esc_html( get_the_date(' d ') ),
esc_html( get_the_date('F Y') )
);
} else {
$time_string = '';
$time_string = sprintf( $time_string,
esc_attr( get_the_date( DATE_W3C ) ),
esc_html( get_the_date(' d F Y') )
);
}
$posted_on = sprintf(
'' . $time_string . ''
);
echo '' . $posted_on . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
}
endif;
if ( ! function_exists( 'canary_led_posted_by' ) ) :
/**
* Prints HTML with meta information for the current author.
*/
function canary_led_posted_by() {
$disable_author = get_theme_mod ('disable-author',0);
if($disable_author == 0){
$byline = sprintf(
/* translators: %s: post author. */
'' . esc_html( get_the_author() ) . ''
);
echo ' ' . $byline . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
}
endif;
if ( ! function_exists( 'canary_led_entry_cat_tags' ) ) :
/**
* Prints HTML with meta information for the categories, tags and comments.
*/
function canary_led_entry_cat_tags() {
$disable_category = get_theme_mod ('disable-category',0);
$disable_comments = get_theme_mod ('disable-comments',0);
$disable_tags = get_theme_mod ('disable-tags',0);
// Hide category and tag text for pages.
if ( 'post' === get_post_type() ) {
if($disable_category == 0){
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( esc_html__( ' / ', 'canary-led' ) );
if ( $categories_list ) {
/* translators: 1: list of categories. */
printf( '' . '%1$s' . '', $categories_list ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
}
if($disable_tags == 0){
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( '', esc_html_x( ' / ', 'list item separator', 'canary-led' ) );
if ( $tags_list ) {
/* translators: 1: list of tags. */
printf( '' . '%1$s'. '', $tags_list ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
}
}
if($disable_comments == 0){
if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
echo '';
}
}
edit_post_link(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__( 'Edit %s', 'canary-led' ),
array(
'span' => array(
'class' => array(),
),
)
),
wp_kses_post( get_the_title() )
),
'',
''
);
}
endif;
if ( ! function_exists( 'canary_led_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 canary_led_post_thumbnail() {
if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) {
return;
}
if ( is_singular() ) :
?>
the_title_attribute(
array(
'echo' => false,
)
),
'class' => "featured-image",
)
);
?>
%1$s%3$s',
sprintf( ''),
esc_url( get_post_format_link( $format ) ),
esc_html(get_post_format_string( $format ))
);
}
}
endif;