Wednesday, May 12, 2010

show particular page in home page

<?php  // retrieve one post with an ID of 5  query_posts('p=5');
global $more; // set $more to 0 in order to only get the first part of the post $more = 0;
// the Loop while (have_posts()) : the_post();
// the content of the post the_content('Read the full post »');
endwhile; ?>

No comments:

Post a Comment