max_num_pages < 2 ) { return; } ?> post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) { return; } ?> ' . get_the_author() . '' ); } elseif ( is_year() ) { $title = sprintf( esc_html__( 'Year: %s', 'colornews' ), get_the_date( esc_html_x( 'Y', 'yearly archives date format', 'colornews' ) ) ); } elseif ( is_month() ) { $title = sprintf( esc_html__( 'Month: %s', 'colornews' ), get_the_date( esc_html_x( 'F Y', 'monthly archives date format', 'colornews' ) ) ); } elseif ( is_day() ) { $title = sprintf( esc_html__( 'Day: %s', 'colornews' ), get_the_date( esc_html_x( 'F j, Y', 'daily archives date format', 'colornews' ) ) ); } elseif ( is_tax( 'post_format' ) ) { if ( is_tax( 'post_format', 'post-format-aside' ) ) { $title = esc_html_x( 'Asides', 'post format archive title', 'colornews' ); } elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) { $title = esc_html_x( 'Galleries', 'post format archive title', 'colornews' ); } elseif ( is_tax( 'post_format', 'post-format-image' ) ) { $title = esc_html_x( 'Images', 'post format archive title', 'colornews' ); } elseif ( is_tax( 'post_format', 'post-format-video' ) ) { $title = esc_html_x( 'Videos', 'post format archive title', 'colornews' ); } elseif ( is_tax( 'post_format', 'post-format-quote' ) ) { $title = esc_html_x( 'Quotes', 'post format archive title', 'colornews' ); } elseif ( is_tax( 'post_format', 'post-format-link' ) ) { $title = esc_html_x( 'Links', 'post format archive title', 'colornews' ); } elseif ( is_tax( 'post_format', 'post-format-status' ) ) { $title = esc_html_x( 'Statuses', 'post format archive title', 'colornews' ); } elseif ( is_tax( 'post_format', 'post-format-audio' ) ) { $title = esc_html_x( 'Audio', 'post format archive title', 'colornews' ); } elseif ( is_tax( 'post_format', 'post-format-chat' ) ) { $title = esc_html_x( 'Chats', 'post format archive title', 'colornews' ); } } elseif ( is_post_type_archive() ) { $title = sprintf( esc_html__( 'Archives: %s', 'colornews' ), post_type_archive_title( '', false ) ); } elseif ( is_tax() ) { $tax = get_taxonomy( get_queried_object()->taxonomy ); /* translators: 1: Taxonomy singular name, 2: Current taxonomy term */ $title = sprintf( esc_html__( '%1$s: %2$s', 'colornews' ), $tax->labels->singular_name, single_term_title( '', false ) ); } elseif ( is_plugin_active( 'woocommerce/woocommerce.php' ) ) { woocommerce_page_title( false ); } else { $title = esc_html__( 'Archives', 'colornews' ); } /** * Filter the archive title. * * @param string $title Archive title to be displayed. */ $title = apply_filters( 'get_the_archive_title', $title ); if ( ! empty( $title ) ) { echo $before . $title . $after; // WPCS: XSS OK. } } endif; if ( ! function_exists( 'colornews_archive_description' ) ) : /** * Shim for `the_archive_description()`. * * Display category, tag, or term description. * * @todo Remove this function when WordPress 4.3 is released. * * @param string $before Optional. Content to prepend to the description. Default empty. * @param string $after Optional. Content to append to the description. Default empty. */ function colornews_archive_description( $before = '', $after = '' ) { $description = apply_filters( 'get_the_archive_description', term_description() ); if ( ! empty( $description ) ) { /** * Filter the archive description. * * @see term_description() * * @param string $description Archive description to be displayed. */ echo $before . $description . $after; // WPCS: XSS OK. } } endif; /** * Returns true if a blog has more than 1 category. * * @return bool */ function colornews_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'colornews_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( 'colornews_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so colornews_categorized_blog should return true. return true; } else { // This blog has only 1 category so colornews_categorized_blog should return false. return false; } } /** * Flush out the transients used in colornews_categorized_blog. */ function colornews_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'colornews_categories' ); } add_action( 'edit_category', 'colornews_category_transient_flusher' ); add_action( 'save_post', 'colornews_category_transient_flusher' );