Title: Search
Last modified: May 10, 2017

---

# Search

 *  [huntz](https://wordpress.org/support/users/huntz/)
 * (@huntz)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/search-96/)
 * Hi,
 * Is there a way to hide all the documents from the standard WordPress search?
 * Thanks

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [W3 Eden, Inc.](https://wordpress.org/support/users/w3eden/)
 * (@w3eden)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/search-96/#post-9130186)
 * Create a new option field named `__wpdm_exclude_from_search` with value = 1 (
   run code `update_option('__wpdm_exclude_from_search' , 1);` once by putting it
   at the end of functions.php with the active theme and then remove it ) or add
   following code at the end of fucntions.php:
 *     ```
       add_action( 'init', 'wpdm_exclude_from_search', 99 );
       function wpdm_exclude_from_search() {
       	global $wp_post_types;
       	if ( post_type_exists( 'wpdmpro' ) ) {		 
       		$wp_post_types['wpdmpro']->exclude_from_search = true;
       	}
       }
       ```
   
 * However, we shall add options to control post type parameters soon.

Viewing 1 replies (of 1 total)

 The topic ‘Search’ is closed to new replies.

 * ![](https://ps.w.org/download-manager/assets/icon-256x256.png?rev=1561688)
 * [Download Manager](https://wordpress.org/plugins/download-manager/)
 * [Support Threads](https://wordpress.org/support/plugin/download-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/download-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/download-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/download-manager/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [W3 Eden, Inc.](https://wordpress.org/support/users/w3eden/)
 * Last activity: [9 years, 4 months ago](https://wordpress.org/support/topic/search-96/#post-9130186)
 * Status: not resolved