bunu kullanıyom şuhan fakat bunun idi sini nasil ayarlariz bilgin varmı ustad


< ?php
$cat_id = get_cat_ID('Genel'); //Kategori isminizi yazın
$args=array(
'cat' => $cat_id,
'orderby' => 'comment_count', //Yazılar yorumlanmaya göre popülerlik kazanır
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 10, //Kaç tane gözüksün istiyorsanız sayısı ona göre belirleyin
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="< ?php the_title_attribute(); ?> yazısı için bağlantı">< ?php the_title(); ?></a></p>
< ?php
endwhile;
}
wp_reset_query();
?>

katagoriye gore nasıl ayarlariz yani