我很难得到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代码。模板部件仍未加载。