We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee8cb31 commit 5a2e536Copy full SHA for 5a2e536
Execute a function on a child site/Ajax Load More/taxonomy-ordering.txt
@@ -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