我在Wordpress中遇到循环问题 - 代码正在添加并重复循环...
这是代码:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part( 'partials/loop', 'page' ); ?>
<?php $the_query = new WP_Query( 'showposts=3' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<?php the_post_thumbnail( array(100,100) );?>
<h4><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
<?php echo strip_tags(get_the_excerpt()) ?>
<?php endwhile; else : ?>
<?php get_template_part( 'partials/content', 'missing' ); ?>
<?php endif; ?>
输出:
<img width="100" height="100" src="http://blahblah/glasses-150x150.png" class="attachment-100x100 wp-post-image" alt="glasses">
<h4><a href="http://blahblah/titleofpost/">Title of Post</a></h4>
The Excerpt of the post, blah blah blah Read more »
 
我不知道&amp; NBSP;最后的代码来自 - 任何帮助赞赏:)
来自
答案 0 :(得分:0)
是否会在循环中的每个帖子中发生?
否则我认为您应该仔细检查文章编辑管理面板中的html标签。当你按Enter键开始另一行时,tinyMCE插件通常会添加一些
(不间断的空格字符)。