wp_update_https_url

wp_update_https_url

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_update_https_url') is found 1 times:

  • /wp-includes/functions.php line 8574
    8570
    8571
    8572
    8573
    8574
    8575
    8576
    8577
    8578
    8579
    8580
         * @since 5.7.0
         *
         * @param string $update_url URL to learn more about updating HTTPS.
         */
        $update_url = apply_filters( 'wp_update_https_url', $update_url );
        if ( empty( $update_url ) ) {
            $update_url = $default_url;
        }
     
        return $update_url;
    }