Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: quick_edit_custom_box

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
667
668                list( $columns ) = $this->get_column_info();
669
670                foreach ( $columns as $column_name => $column_display_name ) {
671                     if ( isset( $core_columns[ $column_name ] ) ) {
672                          continue;
673                     }
674
675                     /** This action is documented in wp-admin/includes/class-wp-posts-list-table.php */
676                     do_action( 'quick_edit_custom_box', $column_name, 'edit-tags', $this->screen->taxonomy );
677                }
678                ?>
679
680                <div class="inline-edit-save submit">
681                     <button type="button" class="cancel button alignleft"><?php _e( 'Cancel' ); ?></button>
682                     <button type="button" class="save button button-primary alignright"><?php echo $tax->labels->update_item; ?></button>
683                     <span class="spinner"></span>
684
685                     <?php wp_nonce_field( 'taxinlineeditnonce', '_inline_edit', false ); ?>