如果您真的想为每种post格式类型使用单个文件,可以尝试以下操作:(粘贴到functions.php)
function post_format_template() {
global $post;
$format = get_post_format($post->ID);
if ( is_single() && $format ) {
include(\'single-format-\'.$format.\'.php\');
exit;
}
}
add_action(\'template_redirect\', \'post_format_template\',10);
这是一个可能的解决方案,但我不建议这样做,只要你不能百分之百确定自己正在做什么。这里发生了什么。
Jared回应是处理帖子格式的推荐方式。