I want to display pages instead of posts something like below:
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
How do I achieve this?
I want to display pages instead of posts something like below:
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
How do I achieve this?
you have to run query posts for this
<?php query_posts(array('post_type'=>'page')); ?>
than your loop
great. thanks!
You must log in to post.