arkadaşlar wordpress sitemin ana sayfasında 7 adet kategorim var ve sayfa yenilendikçe kategorilerin yer deişmesini istiyorum yani random özelligi istiyorum böyle bişey mümkünmü temamın kategori kodları aşagıdadır yardım edecek arkadaşımız varsa sevinirim
<!--Start Kategori 07-->
<?php if (get_option('pk_cat7_enable') == 'No') : ?><?php else : ?>
<!-- Intro -->
<div class="wrap_fullwidth big_padding"><div id="intro_main"><div class="center">
<h2 align="center" style="padding-top:17px;"><a style="color:#000000" href="<?php bloginfo('url'); ?>/?cat=<?php echo(get_option('pk_cat7_cat')); ?>"><?php echo(get_option('pk_cat7_name')); ?></a></h2>
</div></div></div>
<!-- /Intro -->
<!-- fullwidth -->
<div id="fullwidth">
<?php
$args=array(
'category__in' => array( get_option('pk_cat7_cat') ),
'paged'=>$paged,
'orderby'=>rand,
'showposts'=> get_option('pk_cat7_number'),
);
query_posts($args); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!--Profile -->
<div class="video_entry">
<h3 class="cufon"><?php echo substr(get_the_title(), 0, 15).''; ?></h3>
<p class="counter"><?php echo get_post_meta($post->ID, 'cp_sehir', true); ?></p>
<div class="video_thumbnail" style="height:210px;">
<span class="cufon" style="height:200px;"><a href="<?php the_permalink(); ?>">TIKLA</a></span>
<img width="160" height="200" src="<?php bloginfo('template_directory'); ?>/php/timthumb.php?src=<?php cp_get_image_uri($post->ID, 'large', 1); ?>&w=160&h=200&zc=1" class="attachment-videos wp-post-image" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" />
</div>
<br class="clear" />
</div>
<!--Profile -->
<?php endwhile; ?>
<br class="clear" />
</div>
<!-- /fullwidth -->
<br class="clear" />
<?php endif; wp_reset_query(); ?>
<?php endif; ?>
<!--End Kategori 07-->