diff --git a/src/wp-includes/deprecated.php b/src/wp-includes/deprecated.php
index 91d5670..83441f5 100644
a
|
b
|
function force_ssl_login( $force = null ) { |
3662 | 3662 | * @return string|null String on retrieve, null when displaying. |
3663 | 3663 | */ |
3664 | 3664 | function wp_title( $sep = '»', $display = true, $seplocation = '' ) { |
3665 | | _deprecated_function( __FUNCTION__, '4.4', 'add_theme_support( \'title-tag\' )' ); |
| 3665 | add_action( 'wp_head', function(){ |
| 3666 | echo '<meta name="deprecated_notice" content="'; |
| 3667 | _deprecated_function( 'wp_title', '4.4', 'add_theme_support( \'title-tag\' )' ); |
| 3668 | echo '" />'; |
| 3669 | }, 1); |
3666 | 3670 | |
3667 | 3671 | global $wp_locale; |
3668 | 3672 | |