您现在的位置是:首页 > 网站制作 > WordpressWordpress
WordPress调用置顶文章显示置顶数量的三种方法
杰帅2023-06-26【Wordpress】人已围观
简介WordPress主题制作中,有时要调用置顶的文章,并且要控制显示置顶文章的数量,对于刚入门WordPress的站长来说可能比较难,网上的方法也比较多,从运行速度、使用方便、添加代码少等综合考虑,介绍下面三种方法来实现相同的效果。
WordPress主题制作中,有时要调用置顶的文章,并且要控制显示置顶文章的数量,对于刚入门WordPress的站长来说可能比较难,网上的方法也比较多,从运行速度、使用方便、添加代码少等综合考虑,介绍下面三种方法来实现相同的效果。
了解query_posts函数
首先,你需要了解query_posts函数。该函数的作用就是对文章进行检索、挑选、排序,在其后的LOOP循环中使用经过挑选、排序的文章。例如:
<?php
query_posts('posts_per_page=10&ignore_sticky_posts=1&orderby=rand');
while(have_posts()):the_post();
echo '<li>';the_title();echo '</li>';
endwhile;
wp_reset_query();
将随机列出一条文章的标题。
置顶方法一
接下来,就通过对query_posts的参数进行调整,挑选出置顶的文章列表。
$query_post = array(
'posts_per_page' => 10,
'post__in' => get_option('sticky_posts'),
'caller_get_posts' => 1
);
query_posts($query_post);
?>
<ul style="display:none;">
<?php while(have_posts()):the_post(); ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php
wp_reset_query();
参数用一个数组的形式放在$query_post中,关键的参数为'post__in' =>get_option('sticky_posts')和'caller_get_posts' => 0。
'post__in' => get_option('sticky_posts')确定了该LOOP调用的是置顶文章列表。
'caller_get_posts'的作用是排除非指定性文章,即除了置顶文章之外,不显示其他的文章。
'posts_per_page' => 10,控制文章的数量
不添加的情况下,如果置顶文章条目不足'posts_per_page'规定的值,会用最新文章替补完整。
置顶方法二
wordpress置顶文章重点函数
关于置顶文章wordpress有两个常用的函数
is_sticky():判断文章是否是置顶的,是就返回true,不是就返回false
get_option('sticky_posts'): 获取置顶文章ID,返回包含各置顶文章ID的数组
首页展示文章时,如果是置顶文章就全文输出
方法简介:在loop循环时,通过 is_sticky()判断是否是置顶文章
是的话就设置全局变量$more=1;然后调用 the_content();就是全文输出了
否则不是置顶文章的话就设置全局变量 $more=0;然后调用 the_content('更多…');就是截取<--more-->标签后的输出
<?php if (have_posts()) : ?>
<p>分章列表如下</p>
<ul>
<?php while (have_posts()) : the_post();
if (is_sticky()):
global $more; // 设置全局变量$more
$more = 1;
?>
<li>
<h2>[置顶]<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a><h2/>
<p><?php the_content(); ?></p>
</li>
<?php else:
global $more;
$more = 0;
?>
<li>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a><h2/>
<p><?php the_content('阅读更多'); ?></p>
</li>
<?php endif; ?>
<?php endwhile; ?>
</ul>
<?php else: ?>
<h2>没有找到相应文章</h2>
<?php endif; ?>
置顶方法三
一次性把置顶文章全部找出来,然后用列表的方法呈现
方法简介:通过 get_option('sticky_posts')函数把置顶文章id全部找出来,再通过 query_posts() 函数对这部分id的文章循环列表输出
<ul>
<?php
$sticky = get_option('sticky_posts');
rsort( $sticky );//对数组逆向排序,即大ID在前
$sticky = array_slice( $sticky, 0, 5);//输出置顶文章数,请修改5,0不要动,如果需要全部置顶文章输出,可以把这句注释掉
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; ?>
</ul>
这是网上最多的方法,但在实际测试中,当显示数目修改为大于6时,最多只是6,而后台置顶的文章有13条,可以全部显示,但无法控制数量,希望高手指教。
补充方法
可以通过 WP_Query 来实现
<?php
$args = array(
'posts_per_page' => -1,
'post__in' => get_option( 'sticky_posts' )
);
$sticky_posts = new WP_Query( $args );
while ( $sticky_posts->have_posts() ) : $sticky_posts->the_post();?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; wp_reset_query();?>
Tags:is_sticky() query_posts() wordpress函数 WP_Query类 置顶文章
很赞哦! ()
相关文章
- WordPress使用query_posts()函数WP_Query类获取指定分
- WordPress函数:get_permalink()获取文章页面的固定链接
- WordPress函数:add_meta_box(自定义添加Meta模块)
- WordPress函数:register post type (自定义文章类型)用
- WordPress函数:wp_tag_cloud(标签云)详解和举例
- WordPress函数:load_theme_textdomain()(载入本地化语言
- WordPress函数:add_submenu_page()后台为顶级菜单添加
- WordPress函数:add_theme_page()后台添加设置页面
- WordPress函数:add_menu_page()后台添加顶级菜单用法及
- WordPress函数:comment_form( )个性化评论表单多种方法
随机图文
-
WordPress 页面模板(Page Template)下拉列表不显示的原因及解决方法
WordPress 的自定义页面模板是一个非常强大好用的功能,使用它新建一些静态页面(Page),添加上一些数据调用的函数,再在网页上做一个导航连接到对应的页面就可以实现很多自定义的功 -
wordpress 上传的图片不显示的问题 base64,data:image/gif
-
wp_reset_postdata 和 wp_reset_query 的作用与区别
什么时候使用wp_reset_query,什么时候用wp_reset_postdata? -
wordpress发布文章HTML标签被自动过滤掉该如何处理?
wordpress发布文章时很多html标签都会自动过滤掉,造成了文章中无法添加<style></style><script></script>等标签。那么该如何如何处理呢? 解决方法一: 将wp-includes文件夹下
文章评论
本站推荐
标签云
猜你喜欢
- Element Pack Pro 7.1.2完美汉化中文版|Elementor配套扩展小工具WordPress插件 - 搬主题
- WordPress 3D标签云标签WP-Cumulus
- WordPress网站评论框添加表情包功能
- 做好Facebook外贸推广三个步骤【超级指南】
- WordPress数据库优化加速-清理多余的Autoload自动加载数据
- WordPress主题制作全过程(一):基础准备
- 致命错误Call to undefined function“wp_filesize” in /wp-admin/includes/image.php:249解决办法 - 搬主题
- WordPress函数:wp_tag_cloud(标签云)详解和举例
- wordpress优化头部冗余代码
- 只需二步,轻松修改WordPress后台登录地址