Skip to content

Instantly share code, notes, and snippets.

@wmacmill
Created December 21, 2021 19:05
Show Gist options
  • Select an option

  • Save wmacmill/e86817e8895597a033b341386b820b81 to your computer and use it in GitHub Desktop.

Select an option

Save wmacmill/e86817e8895597a033b341386b820b81 to your computer and use it in GitHub Desktop.
Setting DLM to public
add_filter( 'register_post_type_args', 'dlm_change_cpt_args', 10, 2 );
function dlm_change_cpt_args( $args, $cpt_name ) {
//error_log( "CPT Name: $cpt_name" );
if ( 'dlm_download' == $cpt_name ) {
$args['public'] = true;
//error_log( $cpt_name . ': ' . var_export( $args, true ) );
}
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment