attachment_id3_data_meta_box()
Displays fields for ID3 data.
No Hooks.
Return
null
. Nothing (null).
Usage
attachment_id3_data_meta_box( $post );
- $post(WP_Post) (required)
- Current post object.
Changelog
Since 3.9.0 | Introduced. |
attachment_id3_data_meta_box() attachment id3 data meta box code WP 6.8
<?php function attachment_id3_data_meta_box( $post ) { $meta = array(); if ( ! empty( $post->ID ) ) { $meta = wp_get_attachment_metadata( $post->ID ); } foreach ( wp_get_attachment_id3_keys( $post, 'edit' ) as $key => $label ) : $value = ''; if ( ! empty( $meta[ $key ] ) ) { $value = $meta[ $key ]; } ?> <p> <label for="title"><?php echo $label; ?></label><br /> <input type="text" name="id3_<?php echo esc_attr( $key ); ?>" id="id3_<?php echo esc_attr( $key ); ?>" class="large-text" value="<?php echo esc_attr( $value ); ?>" /> </p> <?php endforeach; }