post_submitbox_minor_actions action

Fires after the Save Draft (or Save as Pending) and Preview (or Preview Changes) buttons in the Publish meta box.

do_action( 'post_submitbox_minor_actions', WP_Post $post )

Description

This is action hook , whenever its fires after the Save Draft (or Save as Pending) and Preview (or Preview Changes) buttons in the Publish meta box.

Its consists of one parameter, $post_id ,which is belongs to current post.

Parameters

  • $post : (WP_Post) WP_Post object for the current post.

Live Example

To run the hook, copy the example below.

// run the action 
do_action( 'post_submitbox_minor_actions', $post ); 
  

The following example is for adding a hook callback.

// define the post_submitbox_minor_actions callback 
function action_post_submitbox_minor_actions( $post ) { 
    // make action magic happen here... 
}; 
         
// add the action 
add_action( 'post_submitbox_minor_actions', 'action_post_submitbox_minor_actions', 10, 1 ); 

To remove a hook callback, use the example below.


// remove the action 
remove_action( 'post_submitbox_minor_actions', 'action_post_submitbox_minor_actions', 10, 1 ); 
JOIN 100,000+ SUBSCRIBER's FAMILY

 Subscribe to our weekly newsletter below and never miss the latest updates in WordPress