Skip to content

Instantly share code, notes, and snippets.

@JeroenSormani
Created August 20, 2015 08:20
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 JeroenSormani/82c02d3b7a0e1d71e37a to your computer and use it in GitHub Desktop.
Save JeroenSormani/82c02d3b7a0e1d71e37a to your computer and use it in GitHub Desktop.
Change default note to a regular note
/**
* Change default note type to regular note.
*/
function wpdn_change_default_note_type( $meta ) {
$meta['note_type'] = 'regular';
return $meta;
}
add_filter( 'wpdn_new_note_meta', 'wpdn_change_default_note_type' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment