我正在维护由其他开发人员开发的WordPress主题,我找到了以下代码
add_action('init', 'region_terms', 999);
function region_terms()
{
$taxonomies = array('area-of-practise');
$regions = get_terms( $taxonomies);
return $regions;
}
问题是我无法理解该代码的含义?有人可以帮我吗?
显而易见的是,重新审视“实践区域”自定义分类法类型的分类术语。问题是,这段代码可以用在某个地方吗?答案 0 :(得分:1)
明确提到 -
get_terms()检索分类法或分类法列表中的术语。
您需要在wordpress中了解更多动作挂钩。
The question is, can this code be somewhere useful ?
您实际上需要查看主题是否在此挂钩的基础上提供任何功能/选项。