正文:
WordPress 建网站常用的方法之一是通过置顶文章来提升文章的重要性。在 WordPress 后台,设置置顶文章非常简单。然而,对于对 WordPress 程序不熟悉的新手来说,可能不知道如何设置置顶文章。下面将介绍一下 WordPress 设置置顶文章的方法。
1,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();?>
2,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 教程)WP 调用分类置顶文章和全站置顶文章代码