postを含む複数の投稿タイプをまとめて著者の記事一覧の表示
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?php $arg = array( 'author' => $userId, 'post_type' => array( 'post', 'カスタム投稿A', 'カスタム投稿B', 'カスタム投稿C' ), 'orderby' => 'post_date', 'showposts' => 10 ); $posts = get_posts($arg); <?php if (!empty($posts)): ?> <?php foreach( $posts as $post ) : setup_postdata($post); ?> ループ処理 <?php endforeach; ?> <?php wp_reset_postdata(); ?> <?php else:?> <?php endif; ?> |
コメント