您现在的位置是:首页 > 教程 > 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; 
?>

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

相关标签