wp_signature_url

wp_signature_url

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_signature_url') is found 1 times:

  • /wp-admin/includes/file.php line 1293
    1289
    1290
    1291
    1292
    1293
    1294
    1295
    1296
    1297
    1298
    1299
    *
     * @param false|string $signature_url The URL where signatures can be found for a file, or false if none are known.
     * @param string $url                 The URL being verified.
     */
    $signature_url = apply_filters( 'wp_signature_url', $signature_url, $url );
     
    if ( $signature_url ) {
        $signature_request = wp_safe_remote_get(
            $signature_url,
            array(
                'limit_response_size' => 10 * KB_IN_BYTES, // 10KB should be large enough for quite a few signatures.