Skip to content

Instantly share code, notes, and snippets.

@BrElio
Created August 6, 2020 09:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrElio/218a4e549d9313d884094024606090fd to your computer and use it in GitHub Desktop.
Save BrElio/218a4e549d9313d884094024606090fd to your computer and use it in GitHub Desktop.
Include Download Monitor post type in SearchWP
<?php
function my_dlm_cpt_dlm_download_args( $args ) {
$args['exclude_from_search'] = false;
$args['public'] = true;
return $args;
}
add_filter( 'dlm_cpt_dlm_download_args', 'my_dlm_cpt_dlm_download_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment