%2$s%3$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( 'd' ) ),
esc_html( get_the_date( 'M' ) ),
esc_attr( get_the_modified_date( 'c' ) ),
esc_html( get_the_modified_date() )
);
$posted_on = $time_string ;
$byline = sprintf(
_x( 'By %s', 'post author', 'accesspress-parallax' ),
'' . esc_html( get_the_author() ) . ''
);
$post_date = of_get_option('post_date');
$post_author = of_get_option('post_author');
if($post_date == 1 || empty($post_date)) :
echo '' . $posted_on . '';
endif;
if($post_author == 1 || empty($post_author)) :
echo ' ' . $byline . '';
endif;
}
endif;
/**
* Returns true if a blog has more than 1 category.
*
* @return bool
*/
function accesspress_parallax_categorized_blog() {
if ( false === ( $all_the_cool_cats = get_transient( 'accesspress_parallax_categories' ) ) ) {
// Create an array of all the categories that are attached to posts.
$all_the_cool_cats = get_categories( array(
'fields' => 'ids',
'hide_empty' => 1,
// We only need to know if there is more than one category.
'number' => 2,
) );
// Count the number of categories that are attached to the posts.
$all_the_cool_cats = count( $all_the_cool_cats );
set_transient( 'accesspress_parallax_categories', $all_the_cool_cats );
}
if ( $all_the_cool_cats > 1 ) {
// This blog has more than 1 category so accesspress_parallax_categorized_blog should return true.
return true;
} else {
// This blog has only 1 category so accesspress_parallax_categorized_blog should return false.
return false;
}
}
/**
* Flush out the transients used in accesspress_parallax_categorized_blog.
*/
function accesspress_parallax_category_transient_flusher() {
// Like, beat it. Dig?
delete_transient( 'accesspress_parallax_categories' );
}
add_action( 'edit_category', 'accesspress_parallax_category_transient_flusher' );
add_action( 'save_post', 'accesspress_parallax_category_transient_flusher' );