site_icon_attachment_metadata
Filters the site icon attachment metadata.
Description
Parameters (1)
- 0. $metadata (array)
- Attachment metadata.
Usage
- To run the hook, copy the example below.
- $metadata = apply_filters( 'site_icon_attachment_metadata', $metadata );
- if ( !empty( $metadata ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the site_icon_attachment_metadata callback
- function filter_site_icon_attachment_metadata( $metadata ) {
- // make filter magic happen here...
- return $metadata;
- };
- // add the filter
- add_filter( 'site_icon_attachment_metadata', 'filter_site_icon_attachment_metadata', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'site_icon_attachment_metadata', 'filter_site_icon_attachment_metadata', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-admin/includes/class-wp-site-icon.php
- $metadata = apply_filters( 'site_icon_attachment_metadata', $metadata );