hllzn adlı üyeden alıntı: mesajı görüntüle
teşekkürler yalnız son eklenen sayfaları kısıtlamak istiyorum mesela son 5 sayfa gibi. bunu nasıl sağlayabilirim?

--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 20:05:44 -->-> Daha önceki mesaj 20:05:11 --




bu kodu çalıştıramadım, yine de teşekkürler.

bu kod ile =)

<ul>
<?php

$loop = new WP_Query( array(
'post_type' => 'page'
'showposts' => 0,
'offset' => 5,
'cache_results' => false,
'update_post_meta_cache' => false,
'update_post_term_cache' => false,
'no_found_rows' => true,
) );
while ( $loop->have_posts() ) : $loop->the_post(); ?>

<li><?php the_title();?></li>


<?php endwhile; wp_reset_query(); ?>
</ul>