merhaba arkadaşlar ; kategoriye göre sabit yazısı nasıl yapabilirim ?.
Sabit yazı kodları var ama bunun içine nasıl kategori ayarlaması yapabilirim.?

Sabit yazı kodu :

<?php
$sticky = get_option('sticky_posts');
rsort( $sticky );
$sticky = array_slice( $sticky, 0, 1);
query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1 ) );

if (have_posts()) : while (have_posts()) : the_post();?>
<div class="kOrta1" style="  background-color: rgba(255,51,0,0.5);"><div class="oNo" style="font-weight:bold;">VİP</div>
<div class="oTip"><img src="http://localhost/wordpress/wp-content/themes/metin2/images/vip3.png" alt="<?php the_title(); ?>" width="20" height="20"></div>
<div class="oServer"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></div>
<div class="oDurum"><img src="http://localhost/wordpress/wp-content/themes/metin2/images/vip3.png" width="20" height="20"></div>
<div class="oZorluk" style="font-weight:bold;">VİP</div><div class="temizle"></div></div>
<?php endwhile; ?>
<?php endif; ?>