'http://schema.org', '@type' => 'NewsArticle', 'headline' => get_the_title(), 'image' => array( '@type' => 'ImageObject', // Tambahkan ini 'url' => get_the_post_thumbnail_url($post->ID, 'full'), 'width' => 1200, 'height' => 1200 ), 'datePublished' => get_the_date('c'), 'dateModified' => get_the_modified_date('c'), 'author' => array( '@type' => 'Person', 'name' => get_the_author_meta('display_name', $author_id), 'url' => get_author_posts_url($author_id) ), 'publisher' => array( '@type' => 'Organization', 'name' => get_bloginfo('name'), 'logo' => array( '@type' => 'ImageObject', 'url' => 'https://cdn.sanepo.com/wp-content/uploads/2024/01/sanepo-baru-2024.png', 'height'=> 215, 'width'=> 600 ) ), 'description' => get_the_excerpt() ); echo ''; } ?>