在里面WP_Query
, 逗号分隔的术语段塞列表很好:
$query = new WP_Query ( array(
\'customtaxonomy\' => \'term1,term2\'
) );
。。。但是一组蛞蝓会引起警告:
$query = new WP_Query ( array(
\'customtaxonomy\' => array( \'term1\', \'term2\' )
) );
Warning: urlencode()要求参数1是字符串,数组在/path/to/wp中给出,包含/格式化。php在线3253
另一个WPSE post 提出这可能是WP在层次分类法中寻找层次,但我想不出任何方法来理解这种行为。你知道为什么会这样吗?