- Katılım
- 27 Temmuz 2012
- Mesajlar
- 197
- Reaction score
- 0
Arkadaşlar merhaba. Benim bir mobil tema çalışmam var ve yazıları bu kod yardımı ile çekiyorum.
benim buradaki sorum şu. Burada the_permalink gibi sadece id'yi çekebileceğim bir fonksiyon var mı wp'de? li kısmına yazdırmam gerekli temam için.?
PHP:
<?php $postslist = get_posts('numberposts=55&order=DESC'); foreach ($postslist as $post) : setup_postdata($post); ?>
<li data-haber-id="">
<a title="<?php the_permalink(); ?>" href="read.php?id=<?php the_permalink(); ?>">
<?php $values = get_post_custom_values("resim"); ?>
<?php if($values==""){?><?php }else{ ?>
<img height="80" width="80" src="<?php echo $values[0]; ?>" alt="<?php the_title(); ?>" /><?php } ?>
<h4><span class="date"></span><br><?php the_title(); ?></h4>
</a>
</li>
<?php endforeach; ?>
benim buradaki sorum şu. Burada the_permalink gibi sadece id'yi çekebileceğim bir fonksiyon var mı wp'de? li kısmına yazdırmam gerekli temam için.?