Arkadaslar sidebarda son yazilar mevcut ancak son yazilarda
-sadece belirledigim kategorilerin yazilari gozuksun-
veya
-istemedigim kategorilerin yazilari gozukmesin-
nasil yaparim, yardimlariniza ihtiyacim var...
Sidebar son yazilar -sadece belirledigim kategoriler-
5
●278
- 13-10-2013, 15:36:43
- 13-10-2013, 15:43:07
- 13-10-2013, 15:44:28
<?php if (have_posts()) : ?> <?php $recent = new WP_Query("cat=5,4,12,51&showposts=10"); while($recent->have_posts()) : $recent->the_post();?> <ul> <li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> </ul> <?php endwhile; ?> <?php else: ?> <?php endif; ?> </div>
cat=5,4,12,51 bu şekilde yazarsanız istediğiniz kategorilerden son yazıları çeker. - 13-10-2013, 16:13:25Cok tesekkurler asagidaki kodla sorunumu cozdum
.
<?php $recent = new WP_Query("cat=5,4,12,51&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>