'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. $category_count = count( $categories ); set_transient( 'adventure_travelling_categories', $category_count ); } // Allow viewing case of 0 or 1 categories in post preview. if ( is_preview() ) { return true; } return $category_count > 1; } if ( ! function_exists( 'adventure_travelling_the_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * * @since Adventure Travelling */ function adventure_travelling_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; /** * Flush out the transients used in adventure_travelling_categorized_blog. */ function adventure_travelling_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'adventure_travelling_categories' ); } add_action( 'edit_category', 'adventure_travelling_category_transient_flusher' ); add_action( 'save_post', 'adventure_travelling_category_transient_flusher' );