How can I only show the full view of latest post and summery of other posts at the home page? Thank you.
It depends on your template, but the general format: Look for the line (or similar to): while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID; Code (markup): And before it, put "$postage_meter = 0;" without quotes. Then, inside the loop (after the ?> below the while line): $postage_meter++; if($postage_meter==1){ [code to display first post] } else{ [code to display other posts] } Code (markup): Hope that helps.