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