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