我创建了一个视频后期格式,并创建了一个single-video.php
来显示一个视频帖子。
将以下代码添加到functions.php
包括单个视频页面模板。
function templateForSingleVideo( $template ) {
if ( is_single() && has_post_format() ) {
$post_format_template = locate_template( 'single-' . get_post_format() . '.php' );
if ( $post_format_template ) {
$template = $post_format_template;
}
}
return $template;
}
add_filter( 'template_include', 'templateForSingleVideo' );
它完美无缺。但现在我想要一个页面,其中的帖子(帖子格式=视频)将显示在所有类别中。只想显示所有视频..
抱歉我的英语不好。
由于