- 资源介绍
- 更新记录
- 安装教程
WordPress如何调用全站、同分类随机文章
在我们的网站中会有很多地方用到随机显示文章,为了使我们的wordpress主题功能更加的强大,wordpress随机文章是wordpress主题制作中必不可少的一项功能,
以下分享2段wordpress随机文章的代码片段。
整站随机文章
//numberposts 为文章数量
<?php
$args = array( ‘numberposts’ => 5, ‘orderby’ => ‘rand’, ‘post_status’ => ‘publish’ );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<a href=”<?php the_permalink(); ?>” rel=”external nofollow” rel=”external nofollow” rel=”external nofollow” rel=”external nofollow” ><?php the_title(); ?></a>
<?php endforeach; ?>
同分类随机文章
<?php
$cat = get_the_category();
foreach($cat as $key=>$category){
$catid = $category->term_id;}
$args = array(‘orderby’ => ‘rand’,’showposts’ => 8,’cat’ => $catid ); // 显示文章篇数
$query_posts = new WP_Query();
$query_posts->query($args);
while ($query_posts->have_posts()) : $query_posts->the_post();?>
<a href=”<?php the_permalink(); ?>” rel=”external nofollow” rel=”external nofollow” rel=”external nofollow” rel=”external nofollow” ><?php the_title(); ?></a>
<?php endwhile;?>
<?php wp_reset_query(); ?>
猜你喜欢
-
WordPress 多媒体库添加分类和标签支持
2021-04-26 -
WordPress打赏/点赞/分享插件
2021-04-24 -
WordPress 多媒体库添加分类和标签支持
2021-04-26 -
Ripro子主题-ziyuan-zhankr资源网类
2021-04-24 -
WordPress升级更新方法详解
2021-04-25 -
CSDN免积分在线下载器2019 WIN专业系统工具箱
2021-04-25 -
WordPress网页设计中常见的六种布局方式
2021-04-26 -
RIPRO主题美化-首页最新发布动态轮播+首页资源统计美化模块
2021-04-24 -
WordPress 添加海报分享功能
2021-04-24 -
IPRO主题美化-首页底部纯标题文章展示模块+网站统计模块美化
2021-04-25
-
add_settings_field( )函数
2021-04-26 -
WordPress不同分类调用不同文章模板教程
2021-04-25 -
wordpress后台用户排序改成注册时间排序教程
2021-04-24 -
WordPress如何调用指定ID文章
2021-04-25 -
bloginfo()函数
2021-04-26 -
本地https ssl证书生成工具_mkcert 适用于本地开发
2021-04-25 -
add_meta_box()函数
2021-04-26 -
WordPress如何调用全站、同分类随机文章
2021-04-25 -
我们应该在WordPress网站上使用“www”还是“非www”域名?
2021-04-26 -
WordPress纯代码实现图片灯箱lightbox效果
2021-04-25
猜你在找
常见问题FAQ
- 免费下载或者VIP会员专享资源能否直接商用?
- 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
- 提示下载完但解压或打开不了?
- 找不到素材资源介绍文章里的示例图片?
- 大资源
- 2021-04-25Hi,初次和大家见面了,请多关照!
最后编辑:2021-04-25

