Skip to content

Instantly share code, notes, and snippets.

@SiR-DanieL
Created December 15, 2016 13:52
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 SiR-DanieL/747b91edbd5842ab2b82461640249599 to your computer and use it in GitHub Desktop.
Save SiR-DanieL/747b91edbd5842ab2b82461640249599 to your computer and use it in GitHub Desktop.
/**
* Adds a new item into the Bulk Actions dropdown.
*/
function register_my_bulk_actions( $bulk_actions ) {
$bulk_actions['draft_posts'] = __( 'Move to Draft', 'domain' );
return $bulk_actions;
}
add_filter( 'bulk_actions-edit-post', 'register_my_bulk_actions' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment