Skip to content

Instantly share code, notes, and snippets.

View dalemoore's full-sized avatar

Dale Moore dalemoore

View GitHub Profile
@dalemoore
dalemoore / gist:662e32c75ecc475162c917d2069ef232
Created June 21, 2016 16:54 — forked from bueltge/gist:1016587
Include custom taxonomy term in WordPress search
via http://wordpress.stackexchange.com/questions/2623/include-custom-taxonomy-term-in-search/5404#5404
function atom_search_where($where){
global $wpdb;
if ( is_search() )
$where .= "OR (t.name LIKE '%".get_search_query() . "%' AND {$wpdb->posts} . post_status = 'publish')";
return $where;
}