WP_Query基于摘录内容

时间:2019-01-02 12:52:35

标签: wordpress

尝试根据摘录值提取帖子类型。 到目前为止我的代码:

$ids = array(111,333,9061);

$args = array (
    'post_type' => 'kb',
    'posts_per_page' => -1,
    'meta_query' => array (
            array(
        'key' => 'excerpt',
        'value' => $ids,
        'compare' => 'IN'
            )
    )
);

$the_query = new WP_Query( $args );

如果我删除meta_query,它将拉出帖子。 还尝试过'key' => 'post_excerpt'

有什么想法吗?

0 个答案:

没有答案