您现在的位置是:首页 > 教程 > 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插件的安装基本上都一样,只要学会一个,那么以后安装各种插件都按照这个模式就可以了。 -
wordpress如何编辑网站titlebar
一个网站的首页标题是非常重要的,一是表明了你的网站是做什么的,二是好的标题有利于优化。在使用wordpress建站的时候 -
实现WordPress注册用户上传自定义头像的方法
默认WordPress支持显示Gravatar头像,但目前由于众所周知的原因,申请Gravatar头像比较困难只能显示默认的古怪头像 -
wordpress上传本地的视频到网站的方法
1.首先打开wordpress网站的登陆地址,进入网站管理后台,点击文章进入文章编辑界面;2.然点击文章编辑器中的视频插入按钮;
留言与评论 (共有 条评论) |