Guest User

Untitled

a guest
Oct 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function nwb_remove_search_widget() {
  2. global $post;
  3. if ( get_page_template_slug( $post->ID ) == 'searchable.php' ) return;
  4. unregister_widget('WP_Widget_Search');
  5. }
  6. add_action( 'widgets_init', 'nwb_remove_search_widget' );
  7.  
  8. add_action( 'the_post', 'nwb_remove_search_widget' );
Add Comment
Please, Sign In to add comment