<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)?
非常感谢!