GET_TEMPLATE_PART()在循环中不起作用

时间:2017-04-28 作者:Frederick M. Rogers

我很难得到get_template_part() 来处理我的索引。php页面。模板部分位于循环中,并且引用了“标准”post格式。

template code:

<section id="content" class="site-content blog-page">

    <div class="container"> 

        <?php if ( is_home() || ( is_front_page() && is_home() ) ) : ?>                 

            <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 

                <?php get_template_part( \'template-parts/post/content\', get_post_format() ); ?>
                <?php get_template_part( \'template-parts/navigation/navigation\', \'pagination\' ); ?>             

            <?php endwhile; ?>            

            <?php else : ?>
                <p><?php _e( \'Sorry, no postes matched your criteria\' ); ?></p> 
            <?php endif; ?>        

        <?php endif; ?>

    </div><!-- Ends .container -->       

<?php get_footer(); ?>
Url: http://magneton.carbonium.no/

EDIT更改了索引。反映@rudtek示例的php代码。模板部件仍未加载。

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

正在考虑我的评论。。。如果说:

<section id="content" class="site-content blog-page">

<div class="container">              
<?php if ( is_home() || ( is_front_page() && is_home() ) ) : ?>  
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
            <h2> There are posts but template parts aren\'t found </h2>         
            <?php get_template_part( \'template-parts/post/content\', get_post_format() ); ?>                 
            <?php get_template_part( \'template-parts/navigation/navigation\', \'pagination\' ); ?>  


    <?php endwhile; ?>

    <?php else : ?>
        <h2> There are no posts.</h2> 
    <?php endif; ?> 
<?php else : ?>
    <h2> THIS IS not home or front </h2>   
<?php endif; ?> 
</div><!-- Ends .container -->       
试试这个,现在我们知道它是否不在家,或者它是否没有帖子,或者它是否找不到你的模板。。

相关推荐

Increase offset while looping

我正在编写一个自定义帖子插件,它将自定义帖子分组显示为选项卡。每组4个岗位。是否可以编写一个偏移量随每次循环而增加的查询?因此,结果将是:-第一个查询显示从1到4的帖子-第二个查询显示从5到8的帖子-第三个查询显示从9到12的帖子等。 <div class=\"official-matters-tabs\"> <?php $args = array(\'post_type\' => \'official-matters\', \'showp