Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // Exclude images from search results - WordPress
  2. add_action( 'init', 'exclude_images_from_search_results' );
  3. function exclude_images_from_search_results() {
  4. global $wp_post_types;
  5.  
  6. $wp_post_types['attachment']->exclude_from_search = true;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement