Búsqueda centros
busqueda sobre el título, tipo contenido, metainfo
// WP_Query arguments
$args = array(
'post_type' => array( 'centros' ),
'post_status' => array( 'publish' ),
's' => 'TEXTO-DEL-TITULO',
'nopaging' => true,
'order' => 'DESC',
'orderby' => 'title',
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'doctor',
'value' => 'NOMDOCTOR',
),
array(
'key' => 'direccion',
'value' => 'TEXTODIRECCION',
),
),
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();