IT Nursery
I am using register_taxonomy_for_object_type() to add the Category taxonomy field to Media uploads (attachments). I’m using this code to do so: add_action('init', 'reg_tax'); function reg_tax() { register_taxonomy_for_object_type('category', 'attachment'); }...
  • April 10, 2022
  • 0 Comments
IT Nursery
I have two custom post types ‘country’ and ‘city’ and a shared taxonomy ‘flag’. If I use: <?php $flags = get_terms('flag', 'orderby=name&hide_empty=0'); I get a list of all terms...
  • April 9, 2022
  • 0 Comments