Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_submitbox_start

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

This hook occurs 2 times in this file.

Line Code
321      /**
322       * Fires at the beginning of the publishing actions section of the Publish meta box.
323       *
324       * @since 2.7.0
325       * @since 4.9.0 Added the `$post` parameter.
326       *
327       * @param WP_Post|null $post WP_Post object for the current post on Edit Post screen,
328       *                           null on Edit Link screen.
329       */
330      do_action( 'post_submitbox_start', $post );
331      ?>
332      <div id="delete-action">
333           <?php
334           if ( current_user_can( 'delete_post', $post_id ) ) {
335                if ( ! EMPTY_TRASH_DAYS ) {
336                     $delete_text = __( 'Delete permanently' );
337                } else {
338                     $delete_text = __( 'Move to Trash' );
339                }
 
Line Code
1063      <label for="link_private" class="selectit"><input id="link_private" name="link_visible" type="checkbox" value="N" <?php checked( $link->link_visible, 'N' ); ?> /> <?php _e( 'Keep this link private' ); ?></label>
1064 </div>
1065 </div>
1066
1067 </div>
1068
1069 <div id="major-publishing-actions">
1070      <?php
1071      /** This action is documented in wp-admin/includes/meta-boxes.php */
1072      do_action( 'post_submitbox_start', null );
1073      ?>
1074 <div id="delete-action">
1075      <?php
1076      if ( ! empty( $_GET['action'] ) && 'edit' === $_GET['action'] && current_user_can( 'manage_links' ) ) {
1077           printf(
1078                '<a class="submitdelete deletion" href="%s" onclick="return confirm( \'%s\' );">%s</a>',
1079                wp_nonce_url( "link.php?action=delete&amp;link_id=$link->link_id", 'delete-bookmark_' . $link->link_id ),
1080                /* translators: %s: Link name. */
1081                esc_js( sprintf( __( "You are about to delete this link '%s'\n  'Cancel' to stop, 'OK' to delete." ), $link->link_name ) ),