小灰博客--小灰IT技术博客 | sky00.com

如何调用wordpress的文章图片和标题

wordpressimage1
如何调用wordpress的文章图片和标题呢?看下面代码,摘要也可以调出来 不会好像会报错!

<?php
query_posts(cat==’22’,showposts==’3′); //cat是分类目录ID
?>
<ul id=”featuredproduct” >
<?php if (have_posts()) :while (have_posts()) : the_post(); ?>
<li>
<img src=”<?php echo catch_that_image(); ?>” alt=”<?php the_title(); ?>” /><!–缩略图–>

<span class=”p_info”> <a href=”<?php the_permalink() ?>” ><?php the_title(); ?></span></a><!–标题–>
<!–/*文章摘要开始*/–>

<?php
/* if ($post->post_excerpt) {
echo $post->post_excerpt;
}
else{
echo cut_str(strip_tags(apply_filters(‘the_content’, $post->post_content)),40,”…”);
}*/
?>
<!– /*文章摘要结束*/–>

</li>
<?php endwhile; endif; ?>
</ul>
<?php wp_reset_query(); ?>

这里还有调用woredpress的最新文章、相关文章、最新回复、热点文章、随机文章以及特定栏目的文章代码!下面是网站!
http://www.sky00.com/archives/479.html


如果该文章帮到了您,不妨帮忙分享支持下博主!
同时也欢迎各位技术爱好者加入IT技术群(点击即可):70035098 互相交流学习!

分享该文章到:


发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

分类

最新评论