1. ホーム
  2. wordpress

[解決済み] wordpressでtax_queryをフィルタリングする

2022-03-04 15:19:23

質問

私は、プロパティ領域をフィルタリングする方法を知りたいのですが、私は試してみてください。

<?php     
                 $args = array(
                'post_type'         => 'estate_property',
                'post_status'       => 'publish',
                'tax_query'         => array(
                                                'taxonomy'  => 'property_area',
                                                'field'     => 'slug',
                                                'terms'     => 'pigalle',
                    ),
                );

            $selection = new WP_Query($args);
            ?>

しかし、すべてのショー ! なぜだ(笑)

ありがとうございます。

解決方法は?

をお読みください。 タクソノミーパラメータ

tax_query パラメータは多次元配列です。別の配列でラップする必要があります。

<?php     
$args = array(
    'post_type'         => 'estate_property',
    'post_status'       => 'publish',
    'tax_query'         => array(
        array(
            'taxonomy'  => 'property_area',
            'field'     => 'slug',
            'terms'     => 'pigalle'
        )
    )
);

$selection = new WP_Query($args);
?>