Exciting News! Flipper Code is now WePlugins! Same commitment to excellence, brand new identity.

How to use post_submitbox_misc_actions action in WordPress

Sandeep Kumar Mishra
Sandeep Kumar Mishra
October 5, 2022
5 minutes read

post_submitbox_misc_actions action

Fires after the post time/date setting in the Publish meta box.

do_action( 'post_submitbox_misc_actions', WP_Post $post )

Description

This action hook fires after the post time/date setting in the Publish meta box. It consists of one parameter, $post, which belongs to the current post.

Parameters

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

Live Examples

Running the Hook

To run the hook, copy the example below.

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

Adding a Hook Callback

The following example is for adding a hook callback.

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

Removing a Hook Callback

To remove a hook callback, use the example below.

// remove the action 
remove_action( 'post_submitbox_misc_actions', 'weplugins_action_post_submitbox_misc_actions', 10, 1 ); 

Access Premium WordPress Plugins

Contact Us

If you need any customization, feel free to Contact Us.

Sandeep Kumar Mishra

Sandeep Kumar Mishra

Sandeep Kumar Mishra writes about WordPress and Artificial Intelligence, offering tips and guides to help you master your website and stay updated with the latest tech trends.

Explore the latest in WordPress

Trying to stay on top of it all? Get the best tools, resources and inspiration sent to your inbox every Wednesday.