quick_edit_custom_box
Fires once for each column in Quick Edit mode.
Description
Parameters (2)
- 0. $column_name (string)
- Name of the column to edit.
- 1. $screen_post_type (string)
- The screen post type.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'quick_edit_custom_box', $column_name, $screen_post_type );
- The following example is for adding a hook callback.
- // define the quick_edit_custom_box callback
- function action_quick_edit_custom_box( $column_name, $screen_post_type ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'quick_edit_custom_box', 'action_quick_edit_custom_box', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'quick_edit_custom_box', 'action_quick_edit_custom_box', 10, 2 );
Defined (2)
The action is defined in the following location(s).
- /wp-admin/includes/class-wp-posts-list-table.php
- do_action( 'quick_edit_custom_box', $column_name, $screen->post_type );
- /wp-admin/includes/class-wp-terms-list-table.php
- do_action( 'quick_edit_custom_box', $column_name, 'edit-tags', $this->screen->taxonomy );