嗨,我想收养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
等等,我的各种格式。
每当我想让它继续下去的时候,我都会得到一个连续的帖子循环。
如有任何解释,将不胜感激。
非常感谢