Hi @vinnard
Thank you for your interest in the Filter Everything plugin.
There’s an SEO Rules in the PRO version of the plugin, you can read about it in the documentation – https://filtereverything.pro/resources/seo-rules/
The Free version does not have any features like that. But you always can extend the default features with the custom coding in order to reach the needed results.
Best Regards – Victor
I have the following URL:
/apartments/type-kvartyra/?min_area=35&max_area=52
.
I’m already retrieving the min_area
and max_area
values using $_GET['min_area']
and $_GET['max_area']
.
How can I extract the selected type
(in this case, type-kvartyra
) from the URL?
Hi @vinnard
There is this function
flrt_selected_filter_terms();
which is returning array|false all selected filters or false.
Here in the documentation, you can check more about this function – https://filtereverything.pro/resources/functions/
If you want to get it from the URL, then you can request the URL, make a pattern, parse it, and get the needed information.
Best Regards – Victor