Can't get it to work
-
Hi,
I want to use Custom Taxonomy Order NE to drag and drop the categories. I’ve changed all necessary settings for it, but I can’t get it to work with my code.
My current code is:
$catID = $wp_query->query_vars['cat']; $args = array( 'term_args' => array( 'hide_empty' => 1, 'parent' => $catID, ), ); echo '<ul class="categorieoverview">'; $terms = apply_filters( 'taxonomy-images-get-terms', '', $args ); foreach( (array) $terms as $term){ echo '.............
I tried everything in the args, like orderby, order, hierarchical. Nothing seems to give me the order of categories I’ve set in the admin.
Any idea what can be wrong?
Thanks,
Joost
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Can't get it to work’ is closed to new replies.