'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( 'tanawul_bakery_categories', $category_count ); } // Allow viewing case of 0 or 1 categories in post preview. if ( is_preview() ) { return true; } return $category_count > 1; } /** * Flush out the transients used in tanawul-bakery_categorized_blog. */ function tanawul_bakery_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'tanawul_bakery_categories' ); } add_action( 'edit_category', 'tanawul_bakery_category_transient_flusher' ); add_action( 'save_post', 'tanawul_bakery_category_transient_flusher' ); /** * Posts pagination. */ if ( ! function_exists( 'tanawul_bakery_pagination_option' ) ) { function tanawul_bakery_pagination_type() { $tanawul_bakery_pagination_type = get_theme_mod( 'tanawul_bakery_pagination_option', 'Default' ); if ( $tanawul_bakery_pagination_type == 'Default' ) { the_posts_pagination(); } else { the_posts_navigation(); } } }