您现在的位置是:首页 > 网站制作 > WordpressWordpress
WordPress最新文章列表中置顶文章靠前显示
杰帅2023-07-20【Wordpress】人已围观
简介在做网站时,有些版块需要调用某个栏目的文章列表,并且要求后台设置的置顶文章靠前显示。如下图:
在做网站时,有些版块需要调用某个栏目的文章列表,并且要求后台设置的置顶文章靠前显示。如下图:
怎么实现在调用最新文章列表中置顶文章靠前显示呢?代码如下:
<?php
$sticky = get_option('sticky_posts');
query_posts( array('post__in' => $sticky,'caller_get_posts' =>1,'cat'=>25,'showposts'=>6));
static $case_num=0;
while (have_posts()) : the_post(); ?>
<!--置顶文章-->
<li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php $case_num++;
endwhile; wp_reset_query();
$case_num=6-$case_num;//
query_posts( array( 'post__not_in' => get_option( 'sticky_posts'),'cat'=>25,'showposts'=>$case_num ));
while (have_posts()) : the_post();
?>
<!--非置顶文章-->
<li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; wp_reset_query(); ?>
代码解释:
'cat'=>25 设置调用的分类目录ID号;'showposts'=>6 设置调用文章的总数量;
代码放置好之后,可以在网站后台设置置顶文章。
Tags:wordpress教程 文章 置顶
很赞哦! ()
相关文章
随机图文
-
wordpress 上传的图片不显示的问题 base64,data:image/gif
-
wordpress发布文章HTML标签被自动过滤掉该如何处理?
wordpress发布文章时很多html标签都会自动过滤掉,造成了文章中无法添加<style></style><script></script>等标签。那么该如何如何处理呢? 解决方法一: 将wp-includes文件夹下 -
WordPress 页面模板(Page Template)下拉列表不显示的原因及解决方法
WordPress 的自定义页面模板是一个非常强大好用的功能,使用它新建一些静态页面(Page),添加上一些数据调用的函数,再在网页上做一个导航连接到对应的页面就可以实现很多自定义的功 -
wp_reset_postdata 和 wp_reset_query 的作用与区别
什么时候使用wp_reset_query,什么时候用wp_reset_postdata?
文章评论
本站推荐
标签云
猜你喜欢
- 通过WP CLI一次性删除WordPress中未使用的图片 - 搬主题
- WordPress 公布即将推出的默认主题 Twenty Twenty-Four 的设计
- WordPress网站制作热门文章排行榜(浏览量排序)
- WordPress主题制作全过程(七):制作sidebar.php
- WordPress新手必看的SEO优化技巧(一):主题代码优化篇
- WordPress函数get_the_author()
- WordPress网站维护管理:超实用的最佳实践
- 修复WordPress网站显示白屏问题的6个解决办法
- wordpress如何一次性去除标题重复文章
- wordpress中文主题模板 justnews4.04主题