91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

wordpress調用特定文章列表的方法

發布時間:2020-08-20 10:32:20 來源:億速云 閱讀:345 作者:小新 欄目:建站服務器

小編給大家分享一下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調用特定文章列表的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

车致| 晋城| 荥阳市| 神池县| 伊春市| 临颍县| 建瓯市| 栖霞市| 邢台县| 博爱县| 广平县| 逊克县| 钟山县| 温宿县| 教育| 莲花县| 清苑县| 文成县| 柯坪县| 永年县| 北宁市| 重庆市| 寿阳县| 龙川县| 合阳县| 常熟市| 台北县| 大同市| 玛曲县| 巴林左旗| 施秉县| 达州市| 华阴市| 从化市| 怀化市| 吉安县| 石家庄市| 康保县| 永城市| 台南县| 石景山区|