首页 > 解决方案 > 帖子格式视频的存档页面

问题描述

我创建了一个视频帖子格式,还创建了一个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' );

它工作得很好。但现在我想要一个页面,其中将显示所有类别的帖子(帖子格式=视频)。只想显示所有视频..

对不起,我的英语不好。

谢谢

标签: phpwordpresspostpost-format

解决方案


推荐阅读