wp_update_https_url

wp_update_https_url

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('wp_update_https_url') is found 1 times:

  • /wp-includes/functions.php line 8486
    	 * @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;
    }