HUSKY - Products Filter Professional for WooCommerce

woof_seo_do_index

钩子 woof_seo_do_index 是用于扩展 SEO URL。这提供了更灵活的索引控制。例如,用户不想只索引红色产品:

add_filter('woof_seo_do_index', function ($do_index, $curr_url, $request_data) {

    if (isset($request_data['pa_color'])) {
        $colors = explode(',', $request_data['pa_color']);
        if (in_array('red', $colors)) {
            $do_index = false;
        }
    }

    return $do_index;
}, 10, 3);