Last active
August 29, 2015 14:21
-
-
Save FranciscoAMK/85e9403194a0ccb9889f to your computer and use it in GitHub Desktop.
Búsqueda avanzada WP
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 | |
/** | |
* Ejemplo de búsqueda avanzada para propiedades | |
* | |
* @author Francisco Aguilera G. | |
* | |
*/ | |
?> | |
<form method="get" id="searchform" action="<?php echo home_url(); ?>/"> | |
<h3><?php _e('BUSQUEDA AVANZADA', 'apk');?></h3> | |
<?php | |
/* | |
* Hacemos un array con los nombres de | |
* las taxonomías que queremos | |
* incluir en la búsqueda | |
* | |
*/ | |
$taxonomies = array('tipo-propiedad', 'tipo-oferta', 'ciudad', 'precio-minimo', 'precio-maximo'); | |
/* | |
* Hacemos un loop para pasar por cada | |
* una de las taxonomías | |
* | |
*/ | |
foreach ( $taxonomies as $tax ) : | |
/* | |
* Creamos un dropdown con cada uno de los | |
* términos de cada taxonomía y lo imprimimos | |
* | |
*/ | |
$args = array( | |
'orderby'=>'name', // Ordenado por nombre | |
'hide_empty'=>true // Que no muestre las vacías | |
); | |
$dropdown = get_terms_dropdown($tax, $args); | |
echo $dropdown; // Imprime el dropdown | |
endforeach; // $taxonomies ?> | |
<input type="text" value="" name="s" id="s"> | |
<input name="Buscar" type="submit" value="<?php _e('Buscar', 'apk');?>"> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment