get_taxonomies_for_attachments( string $output = 'names' )

Retrieves all of the taxonomy names that are registered for attachments.


Description

Handles mime-type-specific taxonomies such as attachment:image and attachment:video.

See also


Parameters

$output

(string) (Optional) The type of taxonomy output to return. Accepts 'names' or 'objects'.

Default value: 'names'


Return

(array) The names of all taxonomy of $object_type.


Source

File: wp-includes/media.php

function get_taxonomies_for_attachments( $output = 'names' ) {
	$taxonomies = array();
	foreach ( get_taxonomies( array(), 'objects' ) as $taxonomy ) {
		foreach ( $taxonomy->object_type as $object_type ) {
			if ( 'attachment' == $object_type || 0 === strpos( $object_type, 'attachment:' ) ) {
				if ( 'names' == $output )
					$taxonomies[] = $taxonomy->name;
				else
					$taxonomies[ $taxonomy->name ] = $taxonomy;
				break;
			}
		}
	}

	return $taxonomies;
}


Changelog

Changelog
Version Description
WP-3.5.0 Introduced.