Sorting wordpress custom categories
-
I am trying to sort my cutom 4 wordpress categories to display in the order that I want.
I need help to complete the code:
$categories = get_categories( $args ); usort($categories, function($a, $b, $c, $d) { return get_field("mycategorycustom1", "mycategorycustom1_".$a->term_id) - get_field("mycategorycustom2", "mycategorycustom2_".$b->term_id - get_field("mycategorycustom3", "mycategorycustom3_".$c->term_id - get_field("mycategorycustom4", "mycategorycustom4_".$d->term_id); }); foreach ($categories as $category){ /*?????????????????????????? ??????????????? ??????????? ?????? ?*/ }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Sorting wordpress custom categories’ is closed to new replies.