Created
March 13, 2013 02:29
-
-
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
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 | |
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