Snippets

Pavel Petrov How to add categories to media attachments in WordPress

Created by Pavel Petrov
1
2
3
4
5
6
7
8
<?php
//...
//Append to your theme functions.php

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

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.