I have got something like this: $taxonomies = get_object_taxonomies('my_post_type'); foreach($taxonomies as $tax){ $args['labels'] = get_taxonomy_labels( (object) $args ); $args['label'] = $args['labels']->singular_name; echo $args...
  • May 9, 2022
  • 0 Comments
IT Nursery
Currently I’m trying to get the post type labels plural. In detail: $GLOBALS['wp_post_types']...
  • May 1, 2022
  • 0 Comments