邮政格式视频的存档页面

时间:2018-06-04 10:01:25

标签: php wordpress post post-format

我创建了一个视频后期格式,并创建了一个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' );

它完美无缺。但现在我想要一个页面,其中的帖子(帖子格式=视频)将显示在所有类别中。只想显示所有视频..

抱歉我的英语不好。

由于

0 个答案:

没有答案