diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 9c8fc5d998..32262a02ba 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1567,40 +1567,6 @@ function do_robots() { echo apply_filters( 'robots_txt', $output, $public ); } -/** - * Display the robots.txt file content. - * - * The echo content should be with usage of the permalinks or for creating the - * robots.txt file. - * - * @since 5.3.0 - */ -function do_favicon() { - /** - * Fires when serving the favicon.ico file. - * - * @since 5.3.0 - */ - do_action( 'do_faviconico' ); - - wp_safe_redirect( esc_url( get_site_icon_url( 32, admin_url( 'images/w-logo-blue.png' ) ) ) ); - -} - -/** - * Don't load all of WordPress when handling a favicon.ico request. - * - * Instead, send the headers for a zero-length favicon and bail. - * - * @since 3.0.0 - */ -function wp_favicon_request() { - if ( '/favicon.ico' == $_SERVER['REQUEST_URI'] ) { - header( 'Content-Type: image/vnd.microsoft.icon' ); - exit; - } -} - /** * Determines whether WordPress is already installed. * diff --git a/wp-includes/version.php b/wp-includes/version.php index cd53bb9054..f4a2261def 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45883'; +$wp_version = '5.3-alpha-45884'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.