%1$s', get_avatar( get_the_author_meta( 'user_email' ), $author_avatar_size ) ); printf(('%3$s%2$s'), 'meta-prep meta-prep-author', sprintf('%3$s', esc_url(get_permalink()), esc_attr(get_the_time()), get_the_date('F d, Y')), sprintf('%3$s', esc_url(get_author_posts_url(get_the_author_meta('ID'))), esc_attr(sprintf(__('View all posts by %s', 'beyond-expectations'), get_the_author())), get_the_author() )); if ( !is_page() && !post_password_required() && (comments_open() || get_comments_number())) { echo ''; comments_popup_link( sprintf( __( 'Leave a Comment', 'beyond-expectations'))); echo ''; } } /* ================================================================================================ 2.0 - Entry Comments and Taxonomies ================================================================================================ */ function beyond_expectations_entry_taxonomies() { $cat_list = get_the_category_list(__(' | ', 'beyond-expectations')); $tag_list = get_the_tag_list('', __(' | ', 'beyond-expectations')); if ($cat_list) { printf('', __(' Posted In', 'beyond-expectations'), $cat_list ); } if ($tag_list) { printf('', __(' Tagged', 'beyond-expectations'), $tag_list ); } } /* ================================================================================================ 4.0 - Pagination Navigation ================================================================================================ */ if (!function_exists('beyond_expectations_paging_navigation_setup')) { function beyond_expectations_paging_navigation_setup() { // Don't print empty markup if there's only one page. if ( $GLOBALS['wp_query']->max_num_pages < 2 ) { return; } $paged = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1; $pagenum_link = html_entity_decode( get_pagenum_link() ); $query_args = array(); $url_parts = explode( '?', $pagenum_link ); if ( isset( $url_parts[1] ) ) { wp_parse_str( $url_parts[1], $query_args ); } $pagenum_link = remove_query_arg( array_keys( $query_args ), $pagenum_link ); $pagenum_link = trailingslashit( $pagenum_link ) . '%_%'; $format = $GLOBALS['wp_rewrite']->using_index_permalinks() && ! strpos( $pagenum_link, 'index.php' ) ? 'index.php/' : ''; $format .= $GLOBALS['wp_rewrite']->using_permalinks() ? user_trailingslashit( 'page/%#%', 'paged' ) : '?paged=%#%'; // Set up paginated links. $links = paginate_links( array( 'base' => $pagenum_link, 'format' => $format, 'total' => $GLOBALS['wp_query']->max_num_pages, 'current' => $paged, 'mid_size' => 2, 'add_args' => array_map( 'urlencode', $query_args ), 'prev_text' => __( 'Previous', 'beyond-expectations' ), 'next_text' => __( 'Next', 'beyond-expectations' ), 'type' => 'list', ) ); if ( $links ) : ?> 'social-navigation', 'container' => 'div', 'container_id' => 'menu-social', 'container_class' => 'menu-social', 'menu_id' => 'menu-social-items', 'menu_class' => 'menu-items', 'depth' => 1, 'link_before' => '', 'link_after' => '', 'fallback_cb' => '', )); }; } }