我发现处理这个问题的最佳方法是利用post\\u类函数并通过该函数添加循环。php文件。这是函数中的代码。php文件:
function term_class($classes){
global $post;
$taxonomies = array(\'project_type\');
$terms = get_the_terms( $post->ID , $taxonomies);
foreach ($terms as $term) {
$classes[] = $term->name;
}
return $classes;
}
add_filter( \'post_class\', \'term_class\' );
add_filter( \'body_class\', \'term_class\' );
然后我刚刚添加了post\\u class()函数自定义posts模板。谢谢大家的帮助。