如果在其他地方已经回答了这个问题,我很抱歉,但这可能是最基本的WordPress循环问题,我似乎无法弄明白。我在此页面上有一个自定义类别:http://goo.gl/J4FdhX位于中间列的底部,名为“Jewelry”。这个区域应该根据下面的代码拉出'home-thumbnail'和'the_excerpt'。我忽略了什么吗?一切都有帮助。
<div class="six columns post-bg">
<div class="post-bg-wrapper sameheight">
<h2>JEWELRY</h2>
<?php
$args = array(
'posts_per_page' => 1,
'category' => 'jewelry',
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts('') ) {
while ( $query->have_posts('') ) {
$query->the_post(); ?>
<?php the_excerpt(); ?>
<?php if ( has_post_thumbnail()) : ?>
<div class="center img">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail('home-thumbnail'); ?>
</a>
</div>
<?php endif; ?>
<p class="primary-link"><a href="<?php the_permalink(); ?>">Read More</a></p>
<?php }
}
wp_reset_postdata();
?>
</div>
</div>
提前致谢!
答案 0 :(得分:0)
我想你刚刚在have_posts()中插入了一个额外的''。好吧,好像没问题。
if ( $query->have_posts('') ) {
while ( $query->have_posts('') )
如果还没有解决那个问题,请告诉我,将澄清&amp;详细调试代码