出于某种原因,在第一次发布之后,从the_excerpt
和检索到的内容创建了链接the_title
。任何想法为什么会发生这种情况?
<?php
if ( have_posts() ) : ?>
<?php query_posts('category_name=uncategorized&showposts=3'); ?> <?php
while (have_posts()) : the_post(); ?>
<br />
<?php echo the_post_thumbnail( 'latest-news'); ?>
<?php
the_title(); ?> <br />
<?php
the_excerpt();
endwhile;
wp_reset_postdata();
endif;
?>
这是网站,向下滚动后是“最新消息”部分... http://hailstorm_new.hailstormcommerce.com/ 谢谢