为什么使用此代码:
$paramss = array(\'post_in\' => array( 760, 761) , \'post_type\' => \'product\');
$wc_querya = new WP_Query($paramss);
我得到了5个产品列表,而不仅仅是id为760761的产品?
当做
最合适的回答,由SO网友:Jacob Peattie 整理而成
As documented, 它是post__in
, 带两个下划线:
$paramss = array( \'post__in\' => array( 760, 761 ) , \'post_type\' => \'product\' );