如何调用wordpress的文章图片和标题
文章来源:小灰博客| 时间:2013-04-19 11:13:20| 作者:Leo | 0 条评论
如何调用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 互相交流学习!