wp_signature_url WordPress Filter Hook
The wp_signature_url Wordpress hook allows you to add a signature to the end of a URL. This can be useful for adding a unique identifier to a URL, or for adding a tracking code.
apply_filters( 'wp_signature_url', false|string $signature_url , string $url ) #
Filters the URL where the signature for a file is located.
Parameters
- $signature_url
(false|string)The URL where signatures can be found for a file, or false if none are known.
- $url
(string)The URL being verified.
Source
Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |