Brands
Discover and explore leading brands across industries
‘brand’,
‘posts_per_page’ => 24,
‘paged’ => $paged,
‘orderby’ => ‘title’,
‘order’ => ‘ASC’,
);
// Apply search
$search = get_query_var( ‘brand_search’ );
if ( $search ) {
$args[‘s’] = $search;
}
// Apply category filter
$category = get_query_var( ‘brand_category’ );
if ( $category ) {
$args[‘tax_query’] = array(
array(
‘taxonomy’ => ‘brand_category’,
‘field’ => ‘slug’,
‘terms’ => $category,
),
);
}
$brands_query = new WP_Query( $args );
if ( $brands_query->have_posts() ) :
while ( $brands_query->have_posts() ) : $brands_query->the_post();
?>
max_num_pages > 1 ) : ?>
No brands found. Try adjusting your filters.
$brands_query->max_num_pages,
‘current’ => $paged,
‘prev_text’ => ‘« Previous’,
‘next_text’ => ‘Next »’,
) );
?>