Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: bulk_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
1020
1021           </div></fieldset>
1022
1023      <?php
1024           list( $columns ) = $this->get_column_info();
1025
1026           foreach ( $columns as $column_name => $column_display_name ) {
1027                if ( isset( $core_columns[$column_name] ) )
1028                     continue;
1029                do_action( $bulk ? 'bulk_edit_custom_box' : 'quick_edit_custom_box', $column_name, $screen->post_type );
1030           }
1031      ?>
1032           <p class="submit inline-edit-save">
1033                <a accesskey="c" href="#inline-edit" title="<?php esc_attr_e( 'Cancel' ); ?>" class="button-secondary cancel alignleft"><?php _e( 'Cancel' ); ?></a>
1034                <?php if ( ! $bulk ) {
1035                     wp_nonce_field( 'inlineeditnonce', '_inline_edit', false );
1036                     $update_text = __( 'Update' );
1037                     ?>
1038                     <a accesskey="s" href="#inline-edit" title="<?php esc_attr_e( 'Update' ); ?>" class="button-primary save alignright"><?php echo esc_attr( $update_text ); ?></a>