[Plugin: Query Multiple Taxonomies] Change base URL example not working for dropdowns
-
Using the example code from https://github.com/scribu/wp-query-multiple-taxonomies/wiki/Changing-URLs
function my_qmt_base_url( $base ) { $additional_args = array( 'orderby' => 'title', 'order' => 'asc', ); return add_query_arg( $additional_args, $base ); } add_filter( 'qmt_base_url', 'my_qmt_base_url' );
I am finding that the qmt_base_url is not being filtered when the widget is set to dropdowns but is fine when using lists. See example results with the test website url anonymised:
https://www.example.com/?orderby=title&order=asc&videoscategory=talks&videospersonalities=zephaniah
Is there anything to do about this as dropdowns work much better on the site I’m developing?
https://www.ads-software.com/extend/plugins/query-multiple-taxonomies/
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘[Plugin: Query Multiple Taxonomies] Change base URL example not working for dropdowns’ is closed to new replies.