- 资源介绍
- 更新记录
- 安装教程
在我们WordPress主题制作过程过用到最多的应该是调用文章的代码了,而根据主题功能需求的多样性,调用文章的需求也变得花里胡哨。
下面站壳网分享了几段WordPress调用最新、热门文章的代码实例
最新文章
<?php query_posts(‘showposts=6&cat=1’); ?> // 显示文章篇数和显示分类
<?php while (have_posts()) : the_post(); ?>
<a href=”<?php the_permalink() ?>” rel=”external nofollow” ><?php the_title(); ?></a>
<?php endwhile;?>
指定分类文章
<?php query_posts(‘cat=1&showposts=5’); //cat是要调用的分类ID,showposts是需要显示的文章数量 ?>
<?php while (have_posts()) : the_post(); ?>
<a href=”<?php the_permalink(); ?>” rel=”external nofollow” rel=”external nofollow” ><?php the_title(); ?></a>
<?php endwhile; wp_reset_query(); ?>
调用整站热门文章(按评论数排序)
<?php
$post_num = 10; // 显示篇数
$args = array(
‘post_status’ => ‘publish’, // 只选公开的文章.
‘post__not_in’ => array($post->ID),//排除当前文章
‘caller_get_posts’ => 1, // 排除置顶文章.
‘orderby’ => ‘comment_count’, // 依评论数排序.
‘posts_per_page’ => $post_num
);
$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” ><?php the_title(); ?></a>
<?php } wp_reset_query();?>
猜你喜欢
-
关闭WordPress修订版本和自动保存功能图文教程
2021-04-24 -
single_cat_title()函数
2021-04-26 -
WordPress调用最新/热门/指定分类文章
2021-04-26 -
【RIPro4.9整站美化文件】日主题升级版RIPRO全站N多细节UI升级美化全套主题源码
2021-04-21 -
给WordPress网站添加Javascript代码的方法
2021-04-26 -
小米MIUI解锁system系统分区&手机PC一键解锁system分区
2021-04-25 -
WordPress函数解析:get_bookmarks
2021-04-26 -
网站seo优化要掌握哪些基础知识
2021-04-24 -
WordPress调用分类目录 及输出当前分类下的二级目录 和分类文章数量显示
2021-04-26 -
RiPro主题美化-主题侧边栏添加加群小工具优化版
2021-04-24
-
WordPress网页设计中常见的六种布局方式
2021-04-26 -
RiPro美化-注册自动送Vip代码
2021-04-24 -
Ripro美化-网站幻灯片banner上小图标特效
2021-04-24 -
WordPress如何禁止后台编辑主题和插件
2021-04-25 -
register_nav_menus()函数
2021-04-26 -
SEO优化怎样增加网站收录量
2021-04-24 -
RIpro美化-主题文章页添加FAQ
2021-04-24 -
百度SEO合集0.2.8破解版 wordpress优化插件
2021-04-24 -
wordpress登录界面样式优化
2021-04-25 -
WordPress自动检测并显示文章是否被百度收录
2021-04-25
猜你在找
常见问题FAQ
- 免费下载或者VIP会员专享资源能否直接商用?
- 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
- 提示下载完但解压或打开不了?
- 找不到素材资源介绍文章里的示例图片?
- 大资源网
- 2021-04-25Hi,初次和大家见面了,请多关照!
最后编辑:2021-04-25



