我如何获得分类法的所有 ID term_id Wordpress

How I can get all id's of taxonomy term_id Wordpress

如何按条款获取产品? 在分类法中 pa_color 我里面有很多颜色,我不能把所有的名字都写在数组中 我如何获取具有所有条款 ID 的所有产品?

'tax_query'      => array( array(
        'taxonomy'        => 'pa_color',
        'field'           => 'slug',
        'terms'           =>  all,
        'operator'        => 'IN',
    ) )
) );

试试这个:

'tax_query'      => array( array(
        'taxonomy'        => 'pa_color',
        'field'           => 'slug',
        'operator'        => 'EXISTS',
    ) )
) );