想要将post标记名称添加到body类-我成功地使用下面的代码将类别添加到body类-
//adds new body class for post category
add_filter(\'body_class\', \'add_category_class_single\');
function add_category_class_single($classes){
global $post;
$category = get_the_category($post->ID);
$slug = $category[0]->slug;
$classes[] = \'post-category-\' . $slug;
return $classes;
}
然而,当我尝试使用get\\u the\\u标签时,我没有任何运气-有什么想法吗?