[script type="application/ld+json"] scriptini SEO URL isteklerine ekleyin
Sorunla ilgili bilet burada: https://pluginus.net/support/topic/seo-url-request-no-support-for-wpbakery-or-json-ld-schema-markup – doğrudan herhangi bir betiği SEO Kurallarına eklemenin mümkün olmaması sorunudur, çünkü tüm etiketler striptags işlevi sayesinde filtrelenir ve site güvenliği için gerçekten kullanışlıdır. Yani yol, functions.php dosyasında sonraki kodu kullanmaktır:
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);
Gereken: SEO metin penceresine, betiğin doğru json-ld kodunu eklemesi için rastgele anahtarlar eklemektir https://share.pluginus.net/image/i20251104122715.png