<?php
//cat是栏目ID showposts是调用条数
query_posts('tag=app&cat=1&showposts=1');
?>
<ul style="float:left">
<?php if (have_posts()) :while (have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" ><?php the_title(); ?></a><!--标题-->
</li>
<?php endwhile; endif; ?>
</ul>
<?php wp_reset_query(); ?>
以上代码是调用分类id是1中标签有app的文章一篇。tag,cat,showposts这个三个属性不是都要加的,可以看需要添加属性,如果你还想调用有图片的文章代码如下 但在加代码之前需要在你函数模板添加
function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=['"]([^'"]+)['"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = "/images/default.jpg";
}
return $first_img;
}
添加好后,调用代码如下
<?php
//cat是栏目ID showposts是调用条数
query_posts('tag=app&showposts=1');
?>
<ul style="float:left">
<?php if (have_posts()) :while (have_posts()) : the_post(); ?>
<li>
<img src="<?php echo catch_that_image(); ?>" alt="<?php the_title();?>" width="228px",height="105px"/><!--缩略图-->
<a href="<?php the_permalink() ?>" ><?php the_title(); ?></a><!--标题-->
</li>
<?php endwhile; endif; ?>
</ul>
<?php wp_reset_query(); ?>
文章评论