max_num_pages < 2 ) { return; } ?> post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) { return; } ?> '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 = is_countable( $all_the_cool_cats ) ? count( $all_the_cool_cats ) : 0; set_transient( 'sequential_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so sequential_categorized_blog should return true. return true; } else { // This blog has only 1 category so sequential_categorized_blog should return false. return false; } } /** * Flush out the transients used in sequential_categorized_blog. */ function sequential_category_transient_flusher() { // Like, beat it. Dig? delete_transient( 'sequential_categories' ); } add_action( 'edit_category', 'sequential_category_transient_flusher' ); add_action( 'save_post', 'sequential_category_transient_flusher' ); if ( ! function_exists( 'sequential_entry_meta' ) ) : /** * Prints HTML with meta information for the post format, date and edit link. */ function sequential_entry_meta() { $format = get_post_format(); $formats = get_theme_support( 'post-formats' ); if ( $format && in_array( $format, $formats[0] ) ) : // If has post format ?> %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() ) ); $posted_on = '' . $time_string . ''; echo '' . $posted_on . ' '; } if ( is_sticky() && ! is_single() ) { $featured = '' . esc_html__( 'Featured', 'sequential' ) . ''; echo '' . $featured . ' '; } $byline = '' . esc_html( get_the_author() ) . ''; echo '' . $byline . ' '; edit_post_link( esc_html__( 'Edit', 'sequential' ), '', '' ); } endif; if ( ! function_exists( 'sequential_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function sequential_entry_footer() { /* Hide category and tag text for pages */ if ( 'post' == get_post_type() ) { /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( __( ', ', 'sequential' ) ); if ( $categories_list && sequential_categorized_blog() ) { printf( '' . esc_html__( 'Posted in %1$s', 'sequential' ) . '', $categories_list ); } /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', esc_html__( ', ', 'sequential' ) ); if ( $tags_list && ! is_wp_error( $tags_list ) ) { printf( '' . esc_html__( 'Tagged %1$s', 'sequential' ) . '', $tags_list ); } } if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) { echo ''; comments_popup_link( esc_html__( 'Leave a comment', 'sequential' ), esc_html__( '1 Comment', 'sequential' ), esc_html__( '% Comments', 'sequential' ) ); echo ''; } } endif; /** * Display an optional post thumbnail. * * Wraps the post thumbnail in an anchor element on index * views, or a div element when on single views. * * @return void */ function sequential_post_thumbnail() { if ( post_password_required() || is_attachment() || ! has_post_thumbnail() || has_post_format() ) { return; } ?>
${'featured_page_' . $page_number}, ); // Create a new WP_Query using the argument previously created $featured_page_query = new WP_Query( $featured_page_args ); ?> have_posts() ) : $featured_page_query->the_post(); ?>