ID ) ) { $featured_image_array = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'large-thumb' ); $featured_image_url = $featured_image_array[0]; } $header_image_setting_single = get_theme_mod( 'bus-leader-header-image-setting-single' ); $header_image_setting_home = get_theme_mod( 'bus-leader-header-image-setting-home' ); $header_image_setting_front_page = get_theme_mod( 'bus-leader-header-image-setting-front-page' ); $header_image_setting_pages = get_theme_mod( 'bus-leader-header-image-setting-pages' ); // Get featured image, else Customizer header image for single posts if ( is_single() ) { if ( has_post_thumbnail( $post->ID ) ) { $header_image = $featured_image_url; } elseif ( ! empty( $header_image_setting_single ) ) { $header_image = $header_image_setting_single; } else { $header_image = get_template_directory_uri() . '/images/default-featured-image.jpg'; } } // Get Customizer header image for blog elseif ( is_home() && ! empty( $header_image_setting_home ) ) { $header_image = $header_image_setting_home; } // Get Customizer header image for front page elseif ( is_front_page() && ! empty( $header_image_setting_front_page ) ) { $header_image = $header_image_setting_front_page; } // Get Customizer header image for pages, archive, search & 404 elseif ( is_page() || is_search() || is_archive() || is_404() && ! empty( $header_image_setting_pages ) ) { if ( has_post_thumbnail( $post->ID ) ) { $header_image = $featured_image_url; } elseif ( ! empty( $header_image_setting_pages ) ) { $header_image = $header_image_setting_pages; } else { $header_image = get_template_directory_uri() . '/images/default-featured-image.jpg'; } } // Else, get default theme header image else { $header_image = get_template_directory_uri() . '/images/default-featured-image.jpg'; } ?>
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_next' => false, 'type' => 'list', ) ); if ( $links ) : ?> post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) { return; } ?> %2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string .= ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); printf( __( '%1$sPosted by %2$s', 'bus_leader' ), $time_string, sprintf( '%2$s', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ) ); } endif; if ( ! function_exists( 'bus_leader_comments_link' ) ) : /** * Prints HTML with meta information for the number of comments */ function bus_leader_comments_link() { if ( ! post_password_required() && comments_open() && '0' != get_comments_number() ) { echo ''; comments_popup_link( '', __( '1 Comment', 'bus_leader' ), __( '% Comments', 'bus_leader' ) ); echo ''; } } endif; if ( ! function_exists( 'bus_leader_edit_link' ) ) : /** * Prints HTML with meta information for the edit link */ function bus_leader_edit_link() { edit_post_link( __( 'Edit', 'bus_leader' ), '', '' ); } endif; /** * Returns true if a blog has more than 1 category. * * @return bool */ function bus_leader_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'bus_leader_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( 'bus_leader_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so bus_leader_categorized_blog should return true. return true; } else { // This blog has only 1 category so bus_leader_categorized_blog should return false. return false; } } /** * Flush out the transients used in bus_leader_categorized_blog. */ function bus_leader_category_transient_flusher() { // Like, beat it. Dig? delete_transient( 'bus_leader_categories' ); } add_action( 'edit_category', 'bus_leader_category_transient_flusher' ); add_action( 'save_post', 'bus_leader_category_transient_flusher' ); /** * Template for comments and pingbacks. * Used as a callback by wp_list_comments() for displaying the comments. */ if ( ! function_exists( 'bus_leader_comment' ) ) : function bus_leader_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case 'pingback' : case 'trackback' : ?>
  • id="comment-">
    %s', get_comment_author_link() ); ?>
    comment_approved == '0' ) : ?>

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