您好,登錄后才能下訂單哦!
小編給大家分享一下wordpress獲取置頂文章列表的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
wordpress怎么獲取置頂文章列表?
在WordPress中,或許你希望調用設置好的指定文章列表,這一功能如何實現呢?下文就介紹實現方法,大家參考使用吧
首先,你需要了解query_posts函數。該函數的作用就是對文章進行檢索、挑選、排序,在其后的LOOP循環中使用經過挑選、排序的文章。例如:
代碼如下
<?php query_posts('posts_per_page=10&ignore_sticky_posts=1&orderby=rand'); while(have_posts()):the_post(); echo '<li>';the_title();echo '</li>'; endwhile; wp_reset_query();
將隨機列出一條文章的標題。至于query_posts的具體參數,請參考開發手冊。
接下來,我們就是要通過對query_posts的參數進行調整,挑選出置頂的文章列表了。
代碼如下:
$query_post = array( 'posts_per_page' => 10, 'post__in' => get_option('sticky_posts'), 'caller_get_posts' => 1 ); query_posts($query_post); ?> <ul style="display:none;"> <?php while(have_posts()):the_post(); ?> <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul> <?php wp_reset_query();
參數用一個數組的形式放在$query_post中,關鍵的參數為'post__in' =>get_option('sticky_posts')和'caller_get_posts' => 0。
'post__in' => get_option('sticky_posts')確定了該LOOP調用的是置頂文章列表。'caller_get_posts'的作用是排除非指定性文章,即除了置頂文章之外,不顯示其他的文章。(不添加的情況下,如果置頂文章條目不足'posts_per_page'規定的值,會用最新文章替補完整。)
以上是wordpress獲取置頂文章列表的方法的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。