'; the_posts_pagination(array( 'prev_text' => '←', 'next_text' => '→', 'type' => 'list' )); echo ''; } } /** * Menu Fall Back */ if( !function_exists('brillo_fallback')){ function brillo_fallback( ) { if( is_user_logged_in() ){ echo ''; } } } /** * Create a breadcrumb menu. */ if ( ! function_exists( 'brillo_breadcrumb' ) ) { function brillo_breadcrumb() { // Settings $sep = '/'; $home = esc_html__( 'Home', 'brillo' ); $blog = esc_html__( 'Blog', 'brillo' ); $shop = esc_html__( 'Shop', 'brillo' ); // Get the query & post information global $post, $wp_query; // Get post category $category = get_the_category(); // Get product category $product_cat = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); if ( $product_cat ) { $tax_title = $product_cat->name; } $output = ''; // Build the breadcrums $output .= ''; return apply_filters( 'brillo_breadcrumb', $output ); } } ?>