1

如何向 WP_Query 添加构面过滤器?这是我正在尝试的,我如何获得 2 的ticket_price:

$args = array(
    'post_type'         => 'ticket',
    'posts_per_page'    =>  200,
    'facetwp' => true,
    'facet' => array(                   
        'name' => 'ticket_price',
        'value' => '2',                             
    ),
    'tax_query' => array(
    array(
        'taxonomy' => 'ticket_state',                                       
        'terms'    => 351,
        ),
    ),              
);
$reportQuery = new WP_Query( $args );

这些似乎都不能完全满足我的需要:https ://facetwp.com/documentation/developers/querying/

他们的支持一直到 1 月 2 日才结束,有人用 facetwp 强吗?

4

0 回答 0