diff --git a/src/wp-includes/deprecated.php b/src/wp-includes/deprecated.php
index 91d5670..83441f5 100644
--- a/src/wp-includes/deprecated.php
+++ b/src/wp-includes/deprecated.php
@@ -3662,7 +3662,11 @@ function force_ssl_login( $force = null ) {
  * @return string|null String on retrieve, null when displaying.
  */
 function wp_title( $sep = '&raquo;', $display = true, $seplocation = '' ) {
-	_deprecated_function( __FUNCTION__, '4.4', 'add_theme_support( \'title-tag\' )' );
+	add_action( 'wp_head', function(){
+		echo '<meta name="deprecated_notice" content="';
+		_deprecated_function( 'wp_title', '4.4', 'add_theme_support( \'title-tag\' )' );
+		echo '" />';
+	}, 1);
 
 	global $wp_locale;
 
-- 
2.2.2

