如何在wordpress中获得两个元值范围之间的帖子


How to get post between two meta value range in wordpress?

我正在尝试按价格范围获取产品。例如,列出所有价格在0到1000之间的产品(价格会有所不同)。

我的代码是

[post_type] => product
    [orderby] => ID
    [post_status] => publish
    [posts_per_page] => 18
    [offset] => 0
    [meta_query] => Array
        (
            [relation] => AND
            [0] => Array
                (
                    [key] => wpcf-price
                    [value] => Array
                        (
                            [0] => 0
                            [1] => 1000
                        )
                    [type] => NUMERICAL
                    [compare] => BETWEEN
                )
        )

此代码工作不正常。如何解决此问题?

[type] => NUMERICAL更改为NUMERIC