apply_filters( 'http_headers_useragent', string $user_agent , string $url )
Filters the user agent value sent with an HTTP request.
Parameters
-
$user_agent
string -
WordPress user agent string.
-
$url
string -
The request URL.
Source
File: wp-includes/class-wp-http.php
.
View all references
'user-agent' => apply_filters( 'http_headers_useragent', 'WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ), $url ),
Changelog
Version | Description |
---|---|
5.1.0 | The $url parameter was added. |
2.7.0 | Introduced. |