Woocommerce过滤查询后端

时间:2016-10-01 19:42:05

标签: php wordpress

如何根据具体情况过滤产品?

我收到了下一个代码:

            $post_query .= array(
            'relation' => 'AND',
            array(
                'post_type' => 'tc_events',
                'post_author' => $user_ID
            ),
            array(
                'post_type' => 'tc_templates',
                'post_author' => $user_ID
            ),
            array(
                'post_type' => 'tc_templates',
                'post_title' => 'Default'
            ),              
        );

        $query->set( $post_query );

我想将一些post_types过滤到特定作者,将post_type过滤为帖子标题。

我想我错了,我不知道如何编辑帖子查询...

0 个答案:

没有答案