Advertisement
Guest User

Untitled

a guest
May 25th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. //
  2. // add categories for attachments
  3. //
  4. function add_categories_for_attachments() {
  5. register_taxonomy_for_object_type( 'category', 'attachment' );
  6. }
  7. add_action( 'init' , 'add_categories_for_attachments' ); // add tags for attachments function
  8. function add_tags_for_attachments() {
  9. register_taxonomy_for_object_type( 'post_tag', 'attachment' );
  10. }
  11. add_action( 'init' , 'add_tags_for_attachments' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement