<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>
if have posts クエリにどのように入れることができますか? これは基本的にカスタム投稿タイプのクエリですが、ドキュメント リビジョン プラグインを使用しています (つまり、get_posts は get_documents です)?
どうもありがとう!