On this page
apply_filters( 'pingback_useragent', string $concat_useragent, string $useragent, string $pingback_server_url, string $pagelinkedto, string $pagelinkedfrom )
Filters the user agent sent when pinging-back a URL.
Parameters
$concat_useragentstring-
The user agent concatenated with ' -- WordPress/' and the WordPress version.
$useragentstring-
The useragent.
$pingback_server_urlstring-
The server URL being linked to.
$pagelinkedtostring-
URL of page linked to.
$pagelinkedfromstring-
URL of page linked from.
Source
File: wp-includes/comment.php. View all references
$client->useragent = apply_filters( 'pingback_useragent', $client->useragent . ' -- WordPress/' . get_bloginfo( 'version' ), $client->useragent, $pingback_server_url, $pagelinkedto, $pagelinkedfrom );
Related
Used By
| Used By | Description |
|---|---|
| pingback() wp-includes/comment.php | Pings back the links found in a post. |
Changelog
| Version | Description |
|---|---|
| 2.9.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/pingback_useragent