在wordpress主題開發(fā)中會遇到需要在特定頁面中調(diào)用指定的文章或文章列表培漏,接下來教大家如何調(diào)用WordPress特定文章列表厦章。
調(diào)用最新文章:
<?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; ?>
調(diào)用隨機(jī)文章:
<?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; ?>
調(diào)用指定分類下的最新文章:
<?php
query_posts('showposts=10&cat=1'); //cat=1為調(diào)用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; ?>
在需要調(diào)用特定文章列表的頁面使用如上代碼遇西,就可以達(dá)到效果啦炊琉。