%1$s', $post_date, esc_url( get_permalink() ), the_title_attribute( 'echo=0' ) ); return $output; } /** Post Author */ function blogtina_post_author() { $output = sprintf( '', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ); return $output; } /** Post Edit Link */ function blogtina_post_edit_link() { /** Manipulation */ ob_start(); edit_post_link( 'Edit', '', '' ); $output = ob_get_clean(); return $output; } /** Post Comments */ function blogtina_post_comments() { if ( ( ! comments_open() || post_password_required() ) ) { return; } ob_start(); comments_number( 'Leave a Comment', '1 Comment', '% Comments' ); $comments = ob_get_clean(); /** Output */ $comments = sprintf( '%s', esc_url( get_comments_link() ), $comments ); $output = sprintf( '%1$s', $comments ); return $output; } /** Post Categories */ function blogtina_post_category() { $categories_list = get_the_category_list( ', ' ); if ( ! $categories_list ) { return; } $output = sprintf( 'Posted in %2$s', 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); return $output; } /** Post Tags */ function blogtina_post_tags() { $tags_list = get_the_tag_list( '', ', ' ); if ( ! $tags_list ) { return; } $output = sprintf( 'Tagged %2$s', 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); return $output; } /** Post Link Pages */ function blogtina_post_link_pages() { return wp_link_pages( array( 'before' => '', 'link_before' => '', 'link_after' => '', 'echo' => 0 ) ); } /** Display navigation to next/previous pages when applicable */ add_action( 'blogtina_after_content', 'blogtina_post_nav_init' ); function blogtina_post_nav_init() { global $wp_query; if ( $wp_query->max_num_pages > 1 ) : $blogtina_options = get_blogtina_options(); if ( $blogtina_options['blogtina_post_nav_style'] == 'numeric' ) : blogtina_post_nav_numeric(); else: blogtina_post_nav(); endif; endif; } /** blogtina Post Nav: Default */ function blogtina_post_nav() { ?> ' ); ?> Newer Posts ' ); ?>
str_replace( $big, '%#%', get_pagenum_link( $big ) ), 'format' => '?paged=%#%', 'current' => max( 1, get_query_var('paged') ), 'total' => $wp_query->max_num_pages ); ?>

comment_type ) : case 'pingback' : case 'trackback' : ?>
  • Pingback: ', '' ); ?>

  • id="li-comment-">
    comment_parent ) { $avatar_size = 60; } echo get_avatar( $comment, $avatar_size ); ?> said:', sprintf( '%s', get_comment_author_link() ), sprintf( '%3$s', esc_url( get_comment_link( $comment->comment_ID ) ), get_comment_time( 'c' ), sprintf( '%1$s at %2$s', get_comment_date(), get_comment_time() ) ) ); ?> ', '' ); ?>
    comment_approved == '0' ) : ?> Your comment is awaiting moderation.
    'Reply ', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>

    Nothing Found

    Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.

    'html', 'size' => 'thumbnail', 'attr' => array( 'class' => 'entry-image' ) ) ); printf( '
    %s
    ', esc_url( get_permalink() ), the_title_attribute( 'echo=0' ), $img ); the_excerpt(); else: the_content( 'Continue Reading ' ); endif; } ?>