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