首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >get_template_part()不在循环中工作

get_template_part()不在循环中工作
EN

WordPress Development用户
提问于 2017-04-28 18:20:52
回答 1查看 3.3K关注 0票数 0

我很难让get_template_part()在我的index.php页面上工作。模板部分在循环中,并引用“标准”post格式。

模板代码:

代码语言:javascript
复制
<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(); ?>

网址:http://magneton.carbonium.no/

编辑更改了index.php代码以反映@rudtek示例。模板部件仍未加载。

EN

回答 1

WordPress Development用户

回答已采纳

发布于 2017-04-28 19:14:04

想想我的评论.说:

代码语言:javascript
复制
<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 -->       

试试这个,所以现在我们知道它是不在家还是没有帖子,或者它找不到你的模板。

票数 1
EN
页面原文内容由WordPress Development提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://wordpress.stackexchange.com/questions/265283

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档