Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function pm_noindex_faceted_links() {
- // Get all query parameters and check if any facet parameter is set
- if(!empty($_GET)) {
- $get_parameters = $_GET;
- foreach($get_parameters as $parameter => $value) {
- if(strpos($parameter, 'fwp_') !== false) {
- // Yoast SEO support
- add_filter('wpseo_robots', '__return_false');
- wp_no_robots();
- break;
- }
- }
- }
- }
- add_action('wp_head', 'pm_noindex_faceted_links');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement