Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Created March 13, 2013 02:29
Show Gist options
  • Save fdaciuk/5148920 to your computer and use it in GitHub Desktop.
Save fdaciuk/5148920 to your computer and use it in GitHub Desktop.
Incluir outros campos além do padrão na busca do WordPress Referência: http://codex.wordpress.org/Custom_Queries
<?php
function custom_search_where($where) {
// put the custom fields into an array
$customs = array('custom_field1', 'custom_field2', 'custom_field3');
foreach($customs as $custom) {
$query .= " OR (";
$query .= "(m.meta_key = '$custom')";
$query .= " AND (m.meta_value LIKE '{$n}{$term}{$n}')";
$query .= ")";
}
$where = " AND ({$query}) AND ($wpdb->posts.post_status = 'publish') ";
return($where);
}
add_filter('posts_where', 'custom_search_where');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment