0

投稿IDの配列を取得しました

$ids = array(1277,6098,6709, 6098);

これらの特定の投稿をループスローしたい:

$args = array(   'orderby' => 'post__in',
                    'post__in' => $ids);

get_posts($args);
$custom_posts = get_posts($args);
foreach( $custom_posts as $post ) : setup_postdata($post);
    the_title();
    ...
endforeach;

ただし、wordpress は繰り返される ID (6098) を自動的に除外します。どうすればこれを回避できますか?


独自の関数を作成しようとしました。しかし、残念ながらそれはうまくいきません。次のような独自の get_posts 関数を作成しました。

function get_posts_jt($args = null) {
                $defaults = array(
                    'numberposts' => 5, 'offset' => 0,
                    'category' => 0, 'orderby' => 'post_date',
                    'order' => 'DESC', 'include' => array(),
                    'exclude' => array(), 'meta_key' => '',
                    'meta_value' =>'', 'post_type' => 'post',
                    'suppress_filters' => true
                );

                $r = wp_parse_args( $args, $defaults );
                if ( empty( $r['post_status'] ) )
                    $r['post_status'] = ( 'attachment' == $r['post_type'] ) ? 'inherit' : 'publish';
                if ( ! empty($r['numberposts']) && empty($r['posts_per_page']) )
                    $r['posts_per_page'] = $r['numberposts'];
                if ( ! empty($r['category']) )
                    $r['cat'] = $r['category'];
                if ( ! empty($r['include']) ) {
                    $incposts = $r['include'];
                    $r['posts_per_page'] = count($incposts);  // only the number of posts included
                    $r['post__in'] = $incposts;
                } elseif ( ! empty($r['exclude']) )
                    $r['post__not_in'] = wp_parse_id_list( $r['exclude'] );

                $r['ignore_sticky_posts'] = true;
                $r['no_found_rows'] = true;

                $get_posts = new WP_Query;
                return $get_posts->query($r);

            }

私は次の行を変更しました:

$incposts = wp_parse_id_list( $r['include'] );

に:

$incposts = $r['include'];

配列から重複した ID を削除しないようにします。しかし、この関数はまだ私の Id リストから重複した投稿を表示しません。

何か案は?

4

2 に答える 2

2

ID をループして次のように呼び出すことができget_postますsetup_postdata

global $post;
foreach ($ids as $id) :
    $post = get_post($id);
    setup_postdata( $post );
    the_title();
endforeach;
于 2016-03-04T19:49:47.883 に答える
0

次のことはできません:get_postsを使用wp_parse_id_listして、指定された配列から重複する ID を削除します。

于 2013-05-29T00:58:31.717 に答える