Get all media categories

时间:2014-04-09 作者:Antonio Papa

我为medias帖子类型添加了一个新的分类法:

function register_taxonomy_for_images()
{
    register_taxonomy_for_object_type(\'category\', \'attachment\');
}

add_action(\'init\', \'register_taxonomy_for_images\');
我还通过wordpress管理员添加了一些类别。如何获取我添加的所有媒体类别的阵列?我尝试了get\\u categories(),但它不起作用。

1 个回复
SO网友:Antonio Papa

Found the answer:

$categories = get_terms( \'category\', array(\'hide_empty\' => false) );
结束