Wordpress'de bir kategorimi anasayfada çıkmasını istemiyorum(Yardım)
2
●550
- 08-07-2008, 15:45:59banada lazım bu. ancak bunun eklentisi varmı yoksa yazmakmı gerekiyor
- 08-07-2008, 15:51:26bende böyle bir kod var
<?php $cat_featured=1; ?>
1 yazan yere kategori numarası yazıyorsunuz, home.php yada index.php dosyasına koyunca çalışıyor olması lazım
<?php $cat_featured=1; ?> <?php $num_featured=1; ?> <?php query_posts('showposts='.$num_featured.'&cat='.$cat_featured); ?> <?php if (have_posts()) : ?> <h3><?php wp_list_categories('include='.$cat_featured.'&title_li=&style=none'); ?></h3> <?php while (have_posts()) : the_post(); ?> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>" class="title"><?php the_title(); ?></a></h2> <?php the_content('Devamını Oku... »'); ?> <hr class="clear" /> <?php endwhile; ?> <?php endif; ?>