这就是我所拥有的,它works 很好,但它只从一个CPT中提取。我需要它two.
<?php $my_query = new WP_Query( array(
\'post_type\' => \'Portfolio\' , \'Artwork\' ) );
while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; $the_post_ids = get_the_ID(); ?>
如果我像其他地方建议的那样使用这样的东西:
<?php query_posts( array(
\'post_type\' => array( \'artwork\', \'portfolio\' ));
while ( have_posts() ) : the_post(); $do_not_duplicate = $post->ID; $the_post_ids = get_the_ID(); ?>
对于我似乎无法修复的解析错误,它根本不起作用。意外“;”。我是新来的,有人能建议我试试吗?