MetinDoganca adlı üyeden alıntı: mesajı görüntüle
<ul>
  <?php wp_list_pages('title_li=<h2>' . __('Sayfalar') . '</h2>' ); ?>
</ul>

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 --

BTHBilisim adlı üyeden alıntı: mesajı görüntüle
ya da

<ul>
<?php
			
		$loop = new WP_Query( array(
		'post_type' => 'page'
		'showposts' => 0,
		'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>
bu sorgulama siteminde

meta_key ve
meta_value ataması yaparak query'de
özel alan a göre de sıralayabilrsin

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