我最近添加了我的WordPress主題的文章格式 - 在博客頁面的罰款,因爲他們都是相應的樣式。然而,在我的主頁模板上,我只想顯示'標準'帖子格式(沒有鏈接,畫廊,音頻,視頻等)。只在模板上顯示WordPress'標準'文章格式?
在我的主題選項中,我可以決定在頭版顯示多少帖子,這是'dft_recent_number'的用途。
有誰知道我可以如何更改下面的代碼來排除除'標準'後的所有格式?
<?php
$query = new WP_Query();
$query->query('posts_per_page='.get_option('dft_recent_number'));
//Get the total amount of posts
$post_count = $query->post_count;
while ($query->have_posts()) : $query->the_post();
?>
任何幫助非常感謝!
這讓我在正確的方向傑森,謝謝! 我使用的 '不在' 以除去格式我不想例如 '的$ args =陣列( \t 'showposts'=> $數, \t 'tax_query'=>數組( \t \t \t陣列( '分類'=> 'post_format', \t \t \t \t '字段'=> '蛞蝓', \t \t \t \t '術語'=>數組( '後格式的視頻',「 - 格式 - 交報價','後格式鏈接','後格式音頻'), \t \t \t \t '運算符'=> 'NOT IN' \t \t \t \t) \t \t \t) \t); \t query_posts($ args);' – Justin
不夠公平。很高興它的工作。 –