自定义分类标准术语未显示

时间:2014-06-01 05:35:29

标签: wordpress custom-post-type custom-taxonomy

我创建了一个页面模板和带有分类“gamecategory”的Post Type游戏,但每当我试图从gamecategory获取类别时,它表明它是一个无效的分类。

这是代码

    $categories = get_terms("taxonomy=gamecategory");
    foreach ($categories as $category) :
        echo '<button class="button" data-filter=".' . $category->slug . '">' . $category->name . '</button>';
    endforeach

1 个答案:

答案 0 :(得分:1)

因为:

$categories = get_terms("taxonomy=gamecategory");

应该是:

$categories = get_terms("gamecategory");

另外请确保您已正确创建分类。查看Codex上的详细信息。