HUSKYのSEO URLリクエストにスクリプトを挿入する方法(JSON-LD回避策)
こちらは問題に関するチケットです:https://pluginus.net/support/topic/seo-url-request-no-support-for-wpbakery-or-json-ld-schema-markup – すべてのタグがstriptags機能によってフィルタリングされるため、SEOルールにスクリプトを直接挿入できないという問題です。この機能はサイトの安全性にとって非常に有用です。そのため、ここでの方法は、functions.phpファイルで次のコードを使用することです:
add_action('init', function () {
$url_request = WOOF_EXT::$includes['applications']['url_request'];
remove_filter('woocommerce_after_shop_loop', array($url_request->seo, 'add_seo_text'), 99999);
add_filter('woocommerce_after_shop_loop', function () use ($url_request) {
$rule = $url_request->seo->check_search_rules();
if (!isset($rule['text']) || !$url_request->seo->do_index()) {
return;
}
$txt = apply_filters('woof_seo_text', $url_request->seo->replace_vars($rule['text'], $url_request->seo->get_current_replace_vars()));
if (!empty($txt)) {
switch ($txt) {
case 'key1':
$txt = '<script type="application/ld+json">... place your schema here ...</script>';
break;
case 'key2':
$txt = '<script type="application/ld+json">... place your schema here ...</script>';
break;
default:
break;
}
echo '<div class="woof_seo_text">' . $txt . "</div>\r\n";
}
}, 99999);
}, 1);
必要なこと:SEOテキストウィンドウに任意のキーを挿入して、スクリプトが正しいjson-ldコードを挿入できるようにすることです https://share.pluginus.net/image/i20251104122715.png