Skip to content

Instantly share code, notes, and snippets.

@danielgamage
Created December 22, 2014 21:25
Show Gist options
  • Save danielgamage/08b0e891d0015949fda6 to your computer and use it in GitHub Desktop.
Save danielgamage/08b0e891d0015949fda6 to your computer and use it in GitHub Desktop.
Add categories to media (attachments) in wordpress
...
add_action( 'init', 'create_media_category' );
function create_media_category() {
register_taxonomy(
'media_category', // taxonomy machine name
'attachment', // content type
array(
'labels' => array(
'name' => __( 'Media Categories' ),
'singular_name' => __( 'Media Category' )
),
'hierarchical' => true,
)
);
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment