您现在的位置是:首页 > 教程 > 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;
?>
本文标签:
很赞哦! ()
相关文章
随机图文
-
WordPress怎么修改页面底部的自定义文字
1、首先找到向所有文章底部添加自定义内容的代码,1、首先找到向所有文章底部添加自定义内容的代码 -
wordpress使用的是什么编程语言
wordpress使用的编程语言是PHP语言,也就是说WordPress是使用PHP语言开发的博客平台,用户可以在支持PHP和MySQL数据库的服务器上架设属于自己的网站。 -
修复WordPress密码设置链接错误的两种方法
当用户注册或者忘记密码获取新密码时WordPress会自动向用户邮箱中发送一个验证链接地址,用户通过打开这个链接设置密码 -
让WordPress支持中文URL的方法
之前在配置WordPress的时候做了个固定链接(%postname%),但在这之后我在我无意间点到文章的中文TAG的链接
留言与评论 (共有 条评论) |