in this file : search.php
I have add code
<?php if ($post->post_type=='post'): {?>
...........
<?php } endif; ?>
then will show only post but not page.
And if search result have only page ,it will show “Search Results”
but not “No posts found. Try a different search?” because of this line of code :
<?php if (have_posts()) : ?>
<h2 class="pagetitle">Search Results</h2>
can anyone solve the problem ?