Skip to content

Commit 5a2e536

Browse files
1 parent ee8cb31 commit 5a2e536

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// [ajax_load_more_filters id="movies"]
2+
function my_filters_actor_order( $args ){
3+
// Adjust get_terms query $args.
4+
$args['post_type'] = 'movie';
5+
$args['order'] = 'ASC';
6+
$args['orderby'] = 'slug';
7+
8+
return $args;
9+
}
10+
add_filter( 'alm_filters_movies_actor_args', 'my_filters_actor_order' );

0 commit comments

Comments
 (0)