Title: audio_submitbox_misc_sections
Published: April 25, 2014
Last modified: February 24, 2026

---

# apply_filters( ‘audio_submitbox_misc_sections’, array $fields, WP_Post $post )

## In this article

 * [Description](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#description)
 * [Parameters](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#wp--skip-link--target)

Filters the audio attachment metadata fields to be shown in the publish meta box.

## 󠀁[Description](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#description)󠁿

The key for each item in the array should correspond to an attachment metadata key,
and the value should be the desired label.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#parameters)󠁿

 `$fields`array

An array of the attachment metadata keys and labels.

`$post`[WP_Post](https://developer.wordpress.org/reference/classes/wp_post/)

[WP_Post](https://developer.wordpress.org/reference/classes/wp_post/) object for
the current attachment.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#source)󠁿

    ```php
    $audio_fields = apply_filters( 'audio_submitbox_misc_sections', $fields, $post );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-admin/includes/media.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/6.9.4/src/wp-admin/includes/media.php#L3483)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/6.9.4/src/wp-admin/includes/media.php#L3483-L3483)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#related)󠁿

| Used by | Description | 
| [attachment_submitbox_metadata()](https://developer.wordpress.org/reference/functions/attachment_submitbox_metadata/)`wp-admin/includes/media.php` |

Displays non-editable attachment metadata in the publish meta box.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/audio_submitbox_misc_sections/?output_format=md#changelog)󠁿

| Version | Description | 
| [4.9.0](https://developer.wordpress.org/reference/since/4.9.0/) | Added the `$post` parameter. | 
| [3.7.0](https://developer.wordpress.org/reference/since/3.7.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Faudio_submitbox_misc_sections%2F)
before being able to contribute a note or feedback.