在不知道您要做什么的情况下,您似乎想要将查询变量附加到URL。WordPress有适当的处理方法,无需手动串接。
查看文档add_query_arg()
有关详细信息:https://developer.wordpress.org/reference/functions/add_query_arg/
您可以使用此函数重建URL并将查询变量附加到URL查询。有两种方法可以使用此功能;单个键和值或关联数组。
使用单个键和值:
add_query_arg( \'key\', \'value\', \'http://example.com\' );
将创建
http://example.com/?key=value
使用关联数组:
add_query_arg( array(
\'key1\' => \'value1\',
\'key2\' => \'value2\',
), \'http://example.com\' );
这将创建
http://example.com/?key1=value1&key2=value2