我通过添加函数解决了问题。php此函数:
add_filter(\'single_template\',
create_function(
\'$the_template\',
\'foreach( (array) get_the_category() as $cat ) {
if ( file_exists(TEMPLATEPATH . "/single-{$cat->slug}.php") ) {
return TEMPLATEPATH . "/single-{$cat->slug}.php";
}
}
return $the_template;\'
)
);
并为我的第二首单曲命名。带有slug名称的php。这是
the tutorial I followed. 谢谢大家帮助我!