Answers for "get all taxonomies values by post type"

PHP
0

get taxonomies for custom post type

// get a list of available taxonomies for a post type
$taxonomies = get_taxonomies(['object_type' => ['your_post_type']])
Posted by: Guest on January-06-2021

Browse Popular Code Answers by Language