现在,我创建了一个小部件,返回的帖子在inputbox中具有相同的标记enter,我使用WP\\u查询,但我有一个问题。当我在输入框中输入带空格的单词时,不会返回任何结果,但当输入单词时,没有空格,它会正常工作
这是我的输入框
<input type="text" class="widefat" id="<?php echo esc_attr($this->get_field_id(\'tagCategory\')) ?>"
name="<?php echo esc_attr($this->get_field_name(\'tagCategory\')) ?>"
value="<?php if (isset($tagCategory)) echo esc_attr($tagCategory); ?>"/></p>
这是我的问题$wpbp = new WP_Query(array(
\'post_type\' => \'post\',
\'tag\' => $tagCategory,
\'posts_per_page\' => $numberOfPosts,
\'orderby\' => \'id\',
\'order\' => \'ASC\'
)
);