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
351      /**
352       * Fires at the beginning of the publishing actions section of the Publish meta box.
353       *
354       * @since 2.7.0
355       * @since 4.9.0 Added the `$post` parameter.
356       *
357       * @param WP_Post|null $post WP_Post object for the current post on Edit Post screen,
358       *                           null on Edit Link screen.
359       */
360      do_action( 'post_submitbox_start', $post );
361      ?>
362      <div id="delete-action">
363           <?php
364           if ( current_user_can( 'delete_post', $post_id ) ) {
365                if ( ! EMPTY_TRASH_DAYS ) {
366                     $delete_text = __( 'Delete permanently' );
367                } else {
368                     $delete_text = __( 'Move to Trash' );
369                }
 
Line Code
1113      <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>
1114 </div>
1115 </div>
1116
1117 </div>
1118
1119 <div id="major-publishing-actions">
1120      <?php
1121      /** This action is documented in wp-admin/includes/meta-boxes.php */
1122      do_action( 'post_submitbox_start', null );
1123      ?>
1124 <div id="delete-action">
1125      <?php
1126      if ( ! empty( $_GET['action'] ) && 'edit' === $_GET['action'] && current_user_can( 'manage_links' ) ) {
1127           printf(
1128                '<a class="submitdelete deletion" href="%s" onclick="return confirm( \'%s\' );">%s</a>',
1129                wp_nonce_url( "link.php?action=delete&amp;link_id=$link->link_id", 'delete-bookmark_' . $link->link_id ),
1130                /* translators: %s: Link name. */
1131                esc_js( sprintf( __( "You are about to delete this link '%s'\n  'Cancel' to stop, 'OK' to delete." ), $link->link_name ) ),