Merhaba arkadaşlar. Elimde bulunan koda göre sitemi ayarlamıştım ama ben bunun sadece kategorilere göre gösterim yapmasını istiyorum. Bunu nasıl sağlayabilirim?
<?php
$args = array( 'numberposts' => 4, 'order'=> 'desc', 'orderby' => 'rand' );
$merakliyazar = get_posts( $args );
foreach ($merakliyazar as $post) : setup_postdata($post); ?>
<li>
<a href="<?php the_permalink(); ?>" />
<p>
<?php if ( has_post_thumbnail() ) { the_post_thumbnail(array(135,120), array('class' => 'b_resim')); } else { ?>
<img src="<?php echo bloginfo("template_url"); ?>/img/merakliyazar.png" alt="<?php the_title(); ?>" title="<?php the_title('10'); ?>" width="140px" height="140px" />
<?php } ?>
</p>
<span>
<?php the_title(); ?>
</span>
</a>
</li>
<?php endforeach; wp_reset_query(); ?>
Kategoriler için farklı benzer yazılar kodları var ama bunun tasarımını ben bu kodlara göre ayarlamıştım.