Skip to content

Instantly share code, notes, and snippets.

@bugrayazar
Last active June 4, 2018 09:35
Show Gist options
  • Save bugrayazar/1894c2304652a1093fea181a348624f7 to your computer and use it in GitHub Desktop.
Save bugrayazar/1894c2304652a1093fea181a348624f7 to your computer and use it in GitHub Desktop.
Google Yapısal Veri(Rich Snippets) Kullanmak
<?php
// yapısal veri
add_action( 'wp_head', 'google_yapisal_veri' );
function google_yapisal_veri(){
if (is_single()){ // Sadece tekil yazı sayfalarına ekler
global $post;
$post_id = get_the_ID();
setup_postdata( $post );
?>
<!-- Google Yapısal Veri. -->
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Article",
"name" : "<?php the_title();?>",
"author" : {
"@type" : "Person",
"name" : "<?php the_author();?>"
},
"datePublished" : "<?php the_time('Y'); ?>-<?php the_time('m'); ?>-<?php the_time('j'); ?>",
"image" : "<?php echo the_post_thumbnail_url('full') ?>",
"articleBody" : "<?php echo esc_attr(get_the_content());?>",
"url" : "<?php the_permalink();?>"
}
</script>
<?php
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment