Skip to content

Instantly share code, notes, and snippets.

@tiltos
Created March 19, 2012 23:12
Show Gist options
  • Save tiltos/2128243 to your computer and use it in GitHub Desktop.
Save tiltos/2128243 to your computer and use it in GitHub Desktop.
WP: Remove pages from search results
<?php
function remove_pages_from_search() {
global $wp_post_types;
$wp_post_types['page']->exclude_from_search = true;
}
add_action('init', 'remove_pages_from_search');
//via http://wordpress.stackexchange.com/questions/5453/how-do-i-remove-pages-from-search
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment