Skip to content

Instantly share code, notes, and snippets.

@alessandrotesoro
Created March 5, 2014 15:45
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 alessandrotesoro/9369769 to your computer and use it in GitHub Desktop.
Save alessandrotesoro/9369769 to your computer and use it in GitHub Desktop.
Filter wp comment types dropdown for custom comments types
add_filter( 'admin_comment_types_dropdown', 'tdp_admin_comment_types_dropdown' );
function tdp_admin_comment_types_dropdown( $types ) {
//replace parts as needed
$types['your_note_type'] = __( 'Your Note Type', 'your-text-domain' );
return $types;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment