WordPress调用全站置顶文章和分类置顶文章代码
WordPress调用全站的置顶文章代码: <?php $query_post = array( ‘p…
WordPress调用全站的置顶文章代码:
<?php $query_post = array(
'posts_per_page' => 5,
'post__in' => get_option('sticky_posts'),
'caller_get_posts' => 1
);
query_posts($query_post);
?>
<?php while(have_posts()):the_post(); ?>
<li class="li1"><a href="<?php the_permalink() ?>">
<img src="<?php echo get_first_image(); ?>" width="197px" height="145px" /><span><?php the_title(); ?></span></a></li>
<?php endwhile; ?>
<?php wp_reset_query();?>
WordPress调用指定分类下的置顶文章代码:
<?php
$args = array(
'post_type' => 'post',
'showposts' => 3,
//'orderby' => 'rand',
'post__in' => get_option('sticky_posts'),//获取置顶文章
'cat' => array(8),//指定分类id
);
?>
<?php
$catquery = new WP_Query($args);
while($catquery->have_posts()) : $catquery->the_post();
?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
<?php wp_reset_query();?>
类别:WordPress开发、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!