با هوک `wp_head` یک بلاک اسکریپت `application/ld+json` معتبر حاوی اطلاعات برند و شبکههای اجتماعی در صفحه اصلی درج کنید.
<?php
/**
* تزریق اسکیمای معتبر دادههای سازمان (Organization) به صورت JSON-LD در هدر
*/
function bisco_output_organization_schema() {
// اسکیمای سازمان را منحصراً در صفحه اصلی درج میکنیم تا از تکرار در کل صفحات پرهیز شود
if ( ! is_front_page() ) {
return;
}
$schema = array(
'@context' => 'https://schema.org',
'@type' => 'Organization',
'@id' => esc_url( home_url( '/#organization' ) ),
'name' => get_bloginfo( 'name' ),
'url' => esc_url( home_url( '/' ) ),
'logo' => array(
'@type' => 'ImageObject',
'url' => esc_url( home_url( '/logo.png' ) ), // نشانی مستقیم فایل لوگوی رسمی
'width' => 512,
'height' => 512,
),
'contactPoint' => array(
'@type' => 'ContactPoint',
'telephone' => '+98-21-12345678',
'contactType' => 'customer service',
'areaServed' => 'IR',
'availableLanguage' => array( 'Persian' ),
),
'sameAs' => array(
'https://www.instagram.com/yourbrand',
'https://t.me/yourbrand',
'https://x.com/yourbrand',
'https://www.linkedin.com/company/yourbrand',
),
);
echo '<script type="application/ld+json">' . wp_json_encode( $schema, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT ) . '</script>' . "
";
}
add_action( 'wp_head', 'bisco_output_organization_schema', 2 );