advanced code snippet search
dan_hoerr on 07/13/11
search wordpress results
07/13/11 04:30am
1 person have marked this snippet as a favorite
srdjan
prints "We found 'N' result(s) for 'QUERYSTRING'"
<?phpglobal $wp_query;$total_results = $wp_query->found_posts;?><h3>We found <?php echo $total_results; ?> result<?php echo $total_results == 1 ? '' : 's' ; ?> for "<?php the_search_query(); ?>"</h3>
Report this snippet Tweet
Comment:
You need to login to post a comment.