%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( 'On %s', 'post date', 'business-roy' ),
'' . $time_string . ''
);
echo ' - On ' . $time_string . ''; // WPCS: XSS OK.
}
endif;
if ( ! function_exists( 'business_roy_posted_by' ) ) :
/**
* Prints HTML with meta information for the current author.
*/
function business_roy_posted_by() {
// $byline = sprintf(
// /* translators: %s: post author. */
// //esc_html_x( 'by %s', 'post author', 'business-roy' ),
// ' ' . esc_html( get_the_author() ) . ''
// );
// echo '
' . $byline . '
'; // WPCS: XSS OK.
$byline = sprintf(
/* translators: %s: post author. */
//esc_html_x( 'by %s', 'post author', 'business-roy' ),
'' . get_avatar( get_the_author_meta( 'ID' ) , 30 ) . '' . esc_html( get_the_author() ) . ''
);
echo ' ' . $byline . ''; // WPCS: XSS OK.
}
endif;
if ( ! function_exists( 'business_roy_entry_footer' ) ) :
/**
* Prints HTML with meta information for the categories, tags and comments.
*/
function business_roy_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 */
$categories_list = get_the_category_list( esc_html__( ', ', 'business-roy' ) );
if ( $categories_list ) {
/* translators: 1: list of categories. */
printf( '' . esc_html__( 'Posted in %1$s', 'business-roy' ) . '', $categories_list ); // WPCS: XSS OK.
}
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( '', esc_html_x( ', ', 'list item separator', 'business-roy' ) );
if ( $tags_list ) {
/* translators: 1: list of tags. */
printf( '' . esc_html__( 'Tagged %1$s', 'business-roy' ) . '', $tags_list ); // WPCS: XSS OK.
}
}
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', 'business-roy' ),
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', 'business-roy' ),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
),
'',
''
);
}
endif;
if ( ! function_exists( 'business_roy_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 business_roy_post_thumbnail() {
if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) {
return;
}
if ( is_singular() ) :
?>
';
comments_popup_link(
sprintf(
wp_kses(
/* translators: %s: post title */
__( 'no comment on %s', 'business-roy' ),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
)
);
echo ''; // WPCS: XSS OK.
}
endif;
/**
* Category Lists.
*/
if ( ! function_exists( 'business_roy_category' ) ) :
function business_roy_category() {
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( esc_html__( ', ', 'business-roy' ) );
if ( $categories_list ) {
/* translators: 1: list of categories. */
printf( '' . '%1$s' . '', $categories_list ); // WPCS: XSS OK.
}
}
endif;
/**
* Filter the except length to 20 words.
*
* @param int $length Excerpt length.
* @return int (Maybe) modified excerpt length.
*/
function business_roy_post_excerpt_length( $length ) {
$excerpt_length = get_theme_mod( 'business_roy_post_excerpt_length', 20 );
if( is_admin() ){
return $length;
}elseif( is_front_page() && !is_home() ){
return 28;
}else{
return $excerpt_length;
}
}
add_filter( 'excerpt_length', 'business_roy_post_excerpt_length', 999 );
/**
* Filter the excerpt "read more" string.
*
* @param string $text "Read more" excerpt string.
* @return string (Maybe) modified "read more" excerpt string.
*/
function business_roy_excerpt_more($text){
if(is_admin()){
return $text;
}
return '…';
}
add_filter( 'excerpt_more', 'business_roy_excerpt_more' );
if( !function_exists('business_roy_estimated_reading_time')){
function business_roy_estimated_reading_time() {
global $post;
// get the content
$the_content = $post->post_content;
// count the number of words
$words = str_word_count( strip_tags( $the_content ) );
// rounding off and deviding per 200 words per minute
$minute = floor( $words / 200 );
// rounding off to get the seconds
$second = floor( $words % 200 / ( 200 / 60 ) );
// calculate the amount of time needed to read
$estimate = $minute . ' min' . ( $minute == 1 ? '' : 's' ) . ', ' . $second . ' ' . ( $second == 1 ? '' : 's' );
// create output
$output = ' ' . $estimate . '';
// return the estimate
return $output;
}
}