wordpress kullanıyorsanız eğer, single.php'nin içine şu kodları yerleştirin.
<div style="display:none;" itemscope itemtype="http://data-vocabulary.org/Recipe" >
<h1 itemprop="name"><?php the_title(); ?></h1>
<img itemprop="photo" src="<?php echo resimgoster() ?>" />
<span itemprop="review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">
<span itemprop="rating"><?php $rastgel = rand(1,5); echo $rastgel; ?></span>
<span itemprop="count"><?php $rastgel = rand(12,59); echo $rastgel; ?></span></span>
</div>
function.php'nin içine de şu kodu uygun bir yere koyun.
function resimgoster() {
global $post, $posts;
$resimbir = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$resimbir = $matches [1] [0];
if(empty($resimbir)){
$resimbir = "http://localhost//wp-content/themes/son/resim/resim-yok.gif";
}not: resimbir yolunu kendinize göre düznelersiniz. kolay gelsin.