智能POST格式循环问题

时间:2012-01-08 作者:James

嗨,我想收养get_template_part() 循环post格式的方法,如所示:

if ( have_posts() ) :
    while ( have_posts() ) : the_post();
        if( ! get_post_format() ) {
            get_template_part( \'format\', \'standard\' );
        } else {
            get_template_part( \'format\', get_post_format() );
        }
    endwhile;
endif;
我发展的主题see files 具有index.php 使用以下调用归档

<?php
/**
 * @package WordPress
 * @subpackage WP-Skeleton
 */

    get_header();  //the Header

    get_template_part( \'menu\', \'index\' ); //the  menu + logo/site title 

    get_template_part( \'loop\', \'index\' ); //the Loop  

    get_template_part( \'sidebar\', \'index\' ); //the Sidebar 

    get_footer(); //the Footer 

?>
循环。php是主循环。

我不确定是否必须修改索引。php或循环。php文件。我意识到我必须创造format-audio.php, format-video.php 等等,我的各种格式。

每当我想让它继续下去的时候,我都会得到一个连续的帖子循环。

如有任何解释,将不胜感激。

非常感谢

1 个回复
最合适的回答,由SO网友:Asko 整理而成

您必须编辑格式。php&;格式-键入。根据get\\u template\\u part()用法创建php文件。

结束

相关推荐