Skip to content

Instantly share code, notes, and snippets.

@celsofabri
Last active August 29, 2015 14:06
Show Gist options
  • Save celsofabri/014abedf9e1f5a91d233 to your computer and use it in GitHub Desktop.
Save celsofabri/014abedf9e1f5a91d233 to your computer and use it in GitHub Desktop.
Exclude "pages" in Search of Wordpress / Excluindo "pages" da busca do WordPress
<?php
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment