您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
wordpress调用特定文章列表的方法
尤政航2023-06-24 22:38:22WordPress教程已有人查阅
导读wordpress怎么调用特定文章列表?在 wordpress主题制作开发 中经常会需要在特定的页面中调用出指定的文章或文章列表,接下来教大家如何调用出 wordpress文章列表 。
wordpress怎么调用特定文章列表?在 wordpress主题制作开发 中经常会需要在特定的页面中调用出指定的文章或文章列表,接下来教大家如何调用出 wordpress文章列表 。
调用网站 新文章:
<?php
query_posts('showposts=10&orderby=new');
//showposts=10表示10篇
while(have_posts()): the_post();
?>
<li><a href="<?php the_permalink(); ?>"target="_blank"><?php the_title() ?></a></li>
//这里可以写成你自己需要的样式
<?php endwhile; ?>
调用随机文章:
<?php
query_posts('showposts=10&orderby=rand');
//showposts=10表示10篇
while(have_posts()): the_post();
?>
<li>
<a href="<?php the_permalink(); ?>"target="_blank"><?php the_title() ?></a>
</li>
//这里可以写成你自己需要的样式
<?php
endwhile;
?>
调用某个分类下的 新文章:
<?php
query_posts('showposts=10&cat=1');
//cat=1为调用ID为1的分类下文章
while(have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>"title="<?php the_title(); ?>"><?php the_title(); ?></a>
</li>
<?php
endwhile;
?>
排除某个分类下的文章:
<?php
query_posts('showposts=10&cat=-1');
//cat=-1为排除ID为1的分类下文章
while(have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>"title="<?php the_title(); ?>"><?php the_title(); ?></a>
</li>
<?php
endwhile;
?>
本文标签:
很赞哦! ()
相关文章
随机图文
-
在Kubernetes上运行高可用的WordPress和MySQL教程
WordPress是用于编辑和发布Web内容的主流平台。在本教程中,我将逐步介绍如何使用Kubernetes来构建高可用性(HA)WordPress部署。 -
wordpress数据库账号密码忘了怎么办
1.找到网站数据库管理工具PHPmyadmin,通常在虚拟主机提供的数据高级管理器里。 -
wordpress自定义导航栏的设置方法
WordPress 3.0+ 新增的自定义导航菜单功能使得我们可以更加容易地对网站菜单进行可视化操作了,最重要的是,可以把Pages(页面列表)和Categories -
实现自定义WordPress上传文件路径的方法
自WordPress 3.5版本开始,隐藏了后台媒体设置页面的“默认上传路径和文件的完整URL地址”选项,可以通过下面的代码将该选项调出来。
留言与评论 (共有 条评论) |