2013-03-28 81 views
0

在我正在工作的首頁上,我只想顯示女巫有標籤特色的3個最新職位。必須做的「循環」真的基本的東西,但我不能在任何地方找到答案,這感覺就像我真的到處:(顯示來自特色類別(WordPress的)3最新職位

有人能幫助我嗎?

+0

你想顯示在精選類別最新的3杆基座或功能的標籤或兩者bcoz您在標題類別和內容提及標籤 –

回答

2

你應該去WP參考https://codex.wordpress.org/Class_Reference/WP_Query 它會像THI S:

$featured_posts = new WP_Query(array(
    'tag' => 'featured', 
    'posts_per_page' => 3, 
)); 
+0

這看起來像一個解決方案提了,我測試了它,但它僅迭代一次。看到這個問題http://stackoverflow.com/questions/15682329/wp-query-headache –

+0

哈哈哈...我只有一個帖子標記精選,你的例子工作,謝謝! –

-1

使用以下查詢來獲取最新的3員額。

"SELECT * FROM tablename WHERE featured=1 ORDER BY id DESC LIMIT 3" 

* ID = PK

0
query_posts('tag=featured&posts_per_page=3&order=DESC'); // show latest 3 posts on featured tag 

//query_posts('category_name=featured&tag=featured&posts_per_page=3&order=DESC'); // show latest 3 posts on featured tag and featured categorey 

<?php if (have_posts()) : ?> 
     <?php while (have_posts()) : the_post(); ?>  
     <!-- do stuff ... --> 
     <?php endwhile; ?> 
<?php endif; ?> 
相關問題