Created
August 25, 2015 19:23
-
-
Save chrdesigner/357f40631c50d7bed33c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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