首页 > 网站 > 建站经验 > 正文

WordPress置顶文章的调用方法

2024-04-25 20:41:41
字体:
来源:转载
供稿:网友

<?php

$sticky = get_option('sticky_posts');

rsort( $sticky );

$sticky = array_slice( $sticky, 0, 5);

query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1 ) );

if (have_posts()) :

while (have_posts()) : the_post();

?>

<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></li>

<?php endwhile; endif; ?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表