在我的WordPress网站上,我创建了一个名为“game”的自定义分类法,其中列出了不同的游戏标题。我希望能够使用一个快捷码在我的帖子上显示这些标题的名称。
在创建自定义分类法之前,我使用WordPress的默认类别分类法,并且以下代码(在stack exchange上找到)运行良好:
function shortcode_post_category () {
$html = \'\';
$categories = get_the_category();
foreach( $categories as $category ){
$html .= \'<h2>\' . strtoupper($category->name) . \' KEYBINDS</h2>\';
}
return $html;
}
add_shortcode( \'category-keybinds\', \'shortcode_post_category\' );
据我所知,我需要改变
get_the_categories
到
get_the_term
(?)但是我对
php
我似乎无法将其用于新的“游戏”分类法。