0
<ul>
<?php
global $post;
$args = array('numberposts' => 12, 'orderby' => 'date', 'year' => '2012', 'order' => 'ASC', 'document_language' => 'english');
$myposts = get_documents($args);
foreach($myposts as $post) : setup_postdata($post); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach;
?>
</ul>
如何讓我把如果有帖子查詢?這基本上是自定義帖子類型查詢,但它使用文檔修訂插件(所以get_posts是get_documents)?修復wordpress查詢(如果有,請加)
非常感謝!