Skip to content

Instantly share code, notes, and snippets.

@chrdesigner
Created August 25, 2015 19:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrdesigner/357f40631c50d7bed33c to your computer and use it in GitHub Desktop.
Save chrdesigner/357f40631c50d7bed33c to your computer and use it in GitHub Desktop.
<?php
/*
* WP_Query - Show in your result search page, How many, products were found.
*/
$mySearch =& new WP_Query("s=$s & showposts=-1"); $num = $mySearch->post_count; ?>
<h1 class="page-title search-products-alert">
Foram encontrados <strong><?php echo $num;?></strong> resultados para a busca: <strong><?php echo get_search_query(); ?></strong>
</h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment