Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: media_submitbox_misc_sections

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
3323            * The key for each item in the array should correspond to an attachment
3324            * metadata key, and the value should be the desired label.
3325            *
3326            * @since 3.7.0
3327            * @since 4.9.0 Added the `$post` parameter.
3328            *
3329            * @param array   $fields An array of the attachment metadata keys and labels.
3330            * @param WP_Post $post   WP_Post object for the current attachment.
3331            */
3332           $fields = apply_filters( 'media_submitbox_misc_sections', $fields, $post );
3333
3334           foreach ( $fields as $key => $label ) {
3335                if ( empty( $meta[ $key ] ) ) {
3336                     continue;
3337                }
3338
3339                ?>
3340                <div class="misc-pub-section misc-pub-mime-meta misc-pub-<?php echo sanitize_html_class( $key ); ?>">
3341                     <?php echo $label; ?>