Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: attachment_submitbox_misc_actions

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
276      // translators: Publish box date format, see http://php.net/date
277      $datef = __( 'M j, Y @ G:i' );
278      $stamp = __('Uploaded on: <b>%1$s</b>');
279      $date = date_i18n( $datef, strtotime( $post->post_date ) );
280      ?>
281      <div class="misc-pub-section curtime misc-pub-curtime">
282           <span id="timestamp"><?php printf($stamp, $date); ?></span>
283      </div><!-- .misc-pub-section -->
284
285      <?php do_action('attachment_submitbox_misc_actions'); ?>
286 </div><!-- #misc-publishing-actions -->
287 <div class="clear"></div>
288 </div><!-- #minor-publishing -->
289
290 <div id="major-publishing-actions">
291      <div id="delete-action">
292      <?php
293      if ( current_user_can( 'delete_post', $post->ID ) )
294           if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) {