Wordpress'te son eklenen 5 içeriğin resimlerini gösterme
4
●861
- 01-05-2009, 00:43:03Merhaba arkadaşlar. Yapmak istediğim şey şu : Wordpress Oyun kategorisine eklediğim her haberin resmi sidebar'da listelenicek. Ancak sadece haberin başlığı ve resmi. Tabi ki verdiğim ölçülerde olacak bu. 5 tanesi gözükecek ve üzerine tıkladığında kendi konusuna gidecek. En kısa sürede PM'lerinizi bekliyorum. Ücret sorun değil.
- 03-05-2009, 13:41:23
<!--This is where the thumbnails are found for the featured page - note the custom field name for this image is "thumbnail".--> <!--Replace cat=3 with the Category ID you want to display in this section.--> <?php $recent = new WP_Query("cat=3&showposts=3"); while($recent->have_posts()) : $recent->the_post();?> <?php if( get_post_meta($post->ID, "thumbnail", true) ): ?> <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 5px 0px 0px;" src="<?php echo get_post_meta($post->ID, "thumbnail", true); ?>" alt="<?php the_title(); ?>" width="70" height="70" /></a> <?php else: ?> <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 5px 0px 0px;" src="<?php bloginfo('template_url'); ?>/images/thumbnail.png" alt="<?php the_title(); ?>" width="70" height="70" /></a> <?php endif; ?> <?php the_content_limit(100, "[Devamı]"); ?>resimleri özel alandan "thumbnail" olarak eklersin kategori ID sinide ayarlarsın. yazı istemiyosan devamı yazan kodu kullanmasın.