yaptım belki ihtiyacı olan olur:
			<?php
			if (have_posts()) :  while (have_posts()) : the_post();
			$cek=get_post_meta($post->ID, "anasayfa", true); if($cek==1):
			?>
				<div class="product">
					<div class="product-photo"><a href="<?php the_permalink(); ?>">
					<img src="<?php echo get_post_meta($post->ID, 'resim',true) ?>" alt="<?php the_title(); ?>" class="product-photo" /></a>
					</div>
						<a href="<?php the_permalink(); ?>"><h1><?php the_title(); ?></a></h1>
					<div class="price">Fiyatı: <?php echo get_post_meta($post->ID, 'fiyat',true) ?>TL</div>
						<div class="buttons">
							<a href="<?php the_permalink(); ?>" class="details">Detaylar</a>
							<a href="<?php echo get_post_meta($post->ID, 'siparis',true) ?>" class="onbasket">Siparis Ver</a>
						</div>
				</div>			<?php				 endif; endwhile; else : endif;			?>