您现在的位置是:首页 > 教程 > 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网站怎么配置多语言
wordpress是大家常用到的一个cms系统,其中为了进行二次开发,做企业网站,难免会用到多语言,下面就来给大家介绍下wordpress如何配置多语言。 -
wordpress上传照片存放的文件夹路径
如果您通过WordPress后台直接上传图片,那么这些上传的图片就会被默认存储到"wp-content/uploads"文件夹里面——除非您对默认设置进行更改。 -
wordpress自动在正文内容后添加内容
wordpress怎么自动在正文内容后添加内容很多时候,你都需要在文章内容后面添加一些信息,例如订阅,文章分享 -
wordpress图片压缩插件Compress JPEG & PNG使用方法
WordPress压缩图片可以使用图片压缩插件,常用的压缩插件有reSmush.it Image Optimizer、EWWW Image Optimizer、Compress JPEG
留言与评论 (共有 条评论) |