Get category and subcategory + sorting by custom meta field / bricksultimate

// cat $term = get_queried_object(); $args = []; if( $term ) { $args = [ ‘taxonomy’ => $term->taxonomy, ‘parent’ =>false, ‘hide_empty’ => false, ‘meta_key’ => ‘cat_eq_order’, ‘orderby’ => ‘meta_value’, ‘order’ => ‘ASC’ ]; } return $args; //subcat $term = get_queried_object(); $args = []; if( $term ) { $args = [ ‘taxonomy’ => $term->taxonomy, ‘parent’ => […]

Get category and subcategory + sorting by custom meta field / bricksultimate Читать далее »