'
));
}
}
}
/**
* Returns true if a blog has more than 1 category.
*
* @return bool
*/
function avata_categorized_blog() {
if ( false === ( $all_the_cool_cats = get_transient( 'avata_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( 'avata_categories', $all_the_cool_cats );
}
if ( $all_the_cool_cats > 1 ) {
// This blog has more than 1 category so avata_categorized_blog should return true.
return true;
} else {
// This blog has only 1 category so avata_categorized_blog should return false.
return false;
}
}
function avata_theme_comments(){
$id = get_the_ID();
$avatar = get_avatar();
$coms = wp_list_comments( array( 'echo' => false ) );
$comments = get_comments( array( 'post_id' => $id ) );
$walker = new Walker_Comment;
$output = $walker->paged_walk( $comments, -1, '', '' );
$in_comment_loop = false;
echo $output;
}
/**
* Flush out the transients used in avata_categorized_blog.
*/
function avata_category_transient_flusher() {
// Like, beat it. Dig?
delete_transient( 'avata_categories' );
}
add_action( 'edit_category', 'avata_category_transient_flusher' );
add_action( 'save_post', 'avata_category_transient_flusher' );
// Custom comments list
function avata_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment;
?>