我使用以下代码显示帖子缩略图(仅限):
<?php // Create and run custom loop
$custom_posts = new WP_Query();
$custom_posts->query(\'post_type=page_content§ions=ThemeCL\');
while ($custom_posts->have_posts()) : $custom_posts->the_post();
?>
<div class="float-left">
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( \'Permalink to %s\', \'twentyten\' ), the_title_attribute( \'echo=0\' ) ); ?>" rel="bookmark"><?php the_post_thumbnail(); ?></a>
</div>
<?php endwhile; ?>
但出于某种原因,帖子的标题和内容正在显示(标签内!):
<div class="block-2 border-top">
<h2><a href="http://localhost/wpac/?blocks=mainbar-2" title="Permalink to Mainbar" rel="bookmark">Mainbar</a></h2>
<div class="float-left">
<a href="http://localhost/wpac/?blocks=mainbar" title="Permalink to Mainbar Left" rel="bookmark"><img width="160" height="150" src="http://localhost/wpac/wp-content/uploads/2011/02/showcase2.png" class="attachment-post-thumbnail wp-post-image" alt="showcase2" title="showcase2" /></a>
<p><p>Hello this is the title Hello this is the post content</p>
</p>
</div>
我只想显示帖子缩略图(特色图片)。
有什么建议吗?