1,
) );
// Count the number of categories that are attached to the posts
$all_the_cool_cats = count( $all_the_cool_cats );
set_transient( 'all_the_cool_cats', $all_the_cool_cats );
}
if ( '1' != $all_the_cool_cats ) {
// This blog has more than 1 category so campus_lite_categorized_blog should return true
return true;
} else {
// This blog has only 1 category so campus_lite_categorized_blog should return false
return false;
}
}
if ( ! function_exists( 'campus_lite_time_link' ) ) :
/**
* Gets a nicely formatted string for the published date.
*/
function campus_lite_time_link() {
$time_string = '';
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
$time_string = '';
}
$time_string = sprintf( $time_string,
get_the_date( DATE_W3C ),
get_the_date(),
get_the_modified_date( DATE_W3C ),
get_the_modified_date()
);
// Wrap the time string in a link, and preface it with 'Posted on'.
return sprintf(
/* translators: %s: post date */
__( ' %s', 'campus-lite' ),
'' . $time_string . ''
);
}
endif;
if ( ! function_exists( 'campus_lite_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
* @since Twenty Sixteen 1.2
*/
function campus_lite_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
/**
* Flush out the transients used in campus_lite_categorized_blog
*/
function campus_lite_category_transient_flusher() {
// Like, beat it. Dig?
delete_transient( 'all_the_cool_cats' );
}
add_action( 'edit_category', 'campus_lite_category_transient_flusher' );
add_action( 'save_post', 'campus_lite_category_transient_flusher' );