I have a very simple question that is not answered on WordPress Codex.
The get_categories() function get an option for taxonomies. What I like to ask is, can I pass more than one taxonomies like that:
get_categories(
array(
'taxonomies' => 'category,my_custom_taxonomy'
)
);
The get_categories function only allows a string (1 taxonomy) to be entered for the taxonomy arg.
You can use get_terms which allows an array of taxonomies.