max_num_pages < 2 ) { return; } ?> post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) { return; } ?> '; if( $display_meta_date == '1' ) $return .= '
  • '. get_the_date().'
  • '; if( $display_meta_author == '1' ) $return .= '
  • '.get_the_author_link().'
  • '; if( $display_meta_categories == '1' ) $return .= '
  • '.get_the_category_list(', ').'
  • '; if( $display_meta_comments == '1' ) $return .= '
  • '.avata_get_comments_popup_link('', __( ' 1 ', 'avata'), __( ' % ', 'avata'), 'read-comments', '').'
  • '; $return .= ''; } if( $echo == true ) echo $return; else return $return; } endif; if ( ! function_exists( 'avata_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function avata_entry_footer() { $display_meta_tags = avata_option('display_meta_tags'); if (! apply_filters( 'avata_footer_meta', false ) ){ //return; } echo ''; } endif; add_action( 'widgets_init', 'avata_widgets' ); function avata_widgets(){ global $avata_sidebars ; $avata_sidebars = array( '' => __( 'No Sidebar', 'avata' ), 'default_sidebar' => __( 'Default Sidebar', 'avata' ), 'sidebar-blog' => __( 'Blog Sidebar', 'avata' ), 'sidebar-1' => __( 'Sidebar 1', 'avata' ), 'sidebar-2' => __( 'Sidebar 2', 'avata' ), 'sidebar-3' => __( 'Sidebar 3', 'avata' ), 'sidebar-4' => __( 'Sidebar 4', 'avata' ), 'sidebar-5' => __( 'Sidebar 5', 'avata' ), 'sidebar-5' => __( 'Sidebar 5', 'avata' ), 'sidebar-6' => __( 'Sidebar 6', 'avata' ), 'footer_widget_1' => __( 'Footer Widget 1', 'avata' ), 'footer_widget_2' => __( 'Footer Widget 2', 'avata' ), 'footer_widget_3' => __( 'Footer Widget 3', 'avata' ), 'footer_widget_4' => __( 'Footer Widget 4', 'avata' ), ); foreach( $avata_sidebars as $k => $v ){ if( $k !='' ){ register_sidebar(array( 'name' => $v, 'id' => $k, 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ' )); } } } /** * 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; ?>
  • id="comment-">

    - $depth, 'max_depth' => $args['max_depth']))) ;?>

    comment_approved == '0') : ?>