我想在搜索中的重定向URL上添加空格键%20或+,如何使用add\\u query\\u arg实现这一点?
function bulk_search() {
$redirect_to = add_query_arg( array( \'s\' => $_POST[\'s\'] ), $_POST[\'_wp_http_referer\']);
wp_redirect( $redirect_to );
exit();
}
使用上述功能,如果在搜索框中键入“Hello World”,它将返回搜索
&s=helloworld 在URL上,而不是
&s=hello+world提前谢谢你。