查询字符串格式$_GET[‘VALUE’]不在wp_Query中作为元值工作

时间:2019-05-22 作者:Rafiq

这是我的密码。真奇怪!如果我将任何静态值替换为$s\\u字符串,它就可以正常工作。提前感谢您的帮助。

$s_string = !empty($_GET[\'q\']) ? sanitize_text_field($_GET[\'q\']) : \'\';
$custom_fields = new WP_Query(array(
            \'post_type\' => \'post_type\',
            \'posts_per_page\' => -1,
            \'post_status\' => \'publish\',
        ));
        $fields = $custom_fields->posts;
        $post_ids = array();
        foreach ($fields as $post) {
            $post_ids[] = $post->ID;

        }
        if( count( $post_ids ) > 1 ) {

            $sub_meta_queries = array();

            foreach( $post_ids as $value ) {

                $sub_meta_queries[] = array(
                    \'key\'       => $value,
                    \'value\'     =>  $s_string,
                    \'compare\'   => \'LIKE\'
                );

            }

            $meta_queries[] = array_merge( array( \'relation\' => \'OR\' ), $sub_meta_queries );

        } else {

            $meta_queries[] = array(
                \'key\'       => $post_ids,
                \'value\'     => sanitize_text_field( $s_string ),
                \'compare\'   => \'LIKE\'
            );
        }

1 个回复
SO网友:Michael Sawicki

你确定$_GET[\'q\'] 参数已设置?尝试:

$s_string = ( isset($_GET[\'q]) && !empty($_GET[\'q\']) ) ? sanitize_text_field($_GET[\'q\']) : \'\';

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post