在我看来,最好的方法是add_query_arg()
function:
$only_conent_url = add_query_arg( array( \'content-only\' => 1 ), get_permalink( $post->ID ) );
然后,如果需要,您可以逃离它:
esc_url( $only_conent_url );
add_query_arg()
获取作为第二个参数传递的URL,并附加一个格式正确的查询字符串,该字符串是从作为第一个参数传递的数组中包含的键=>值对生成的。