您好,登錄后才能下訂單哦!
小編給大家分享一下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調用特定文章列表的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。