ControlledChaos of Controlled Chaos Design
8/9/2016 - 6:47 PM

Add categories to WordPress attachments.

Add categories to WordPress attachments.

<?php

function ccd_attachments_categories() {
    register_taxonomy_for_object_type( 'category', 'attachment' );
}
add_action( 'init' , 'ccd_attachments_categories' );

?>

Attachment Categories

WordPress Snippet