我已經在Wordpress中設置了自定義發佈類型。這是客戶可以上傳PDF格式文件的部分。這些文件分爲兩類 - 「可下載的表格」和「菜單」;該類別的自定義字段名稱是'document_category'WordPress的 - 按郵政類型查詢類別抓取項目
我想運行查詢,並只顯示頁面上的'可下載的表單'。這裏是我通常使用的代碼---我希望有人可以幫我添加我需要的東西使其工作?
<?php
$args = array('post_type' => 'prep_forms', 'posts_per_page' => -1);
// The Query
$the_query = new WP_Query($args);
// The Loop
$i = 0;
while ($the_query->have_posts()) : $the_query->the_post();
?>
<li><a href="<?php echo get_field('document_pdf_file'); ?>"><?php the_title(); ?></a></li>
<?php
$i++;
endwhile;
// Reset Post Data
wp_reset_postdata();
?>
謝謝。
再次救了我。謝謝Kostis。 –
所以它工作,很好:-) – Kostis