Title tag WP 4.1
-
With WP4.1, the tag
<title><?php wp_title(''); ?></title>
should no longer be used, it is necessary to remove it.
Put in functions.phpfunction wpc_theme_support() { add_theme_support( 'title-tag' ); } add_action( 'after_setup_theme', 'wpc_theme_support' );
Then put it in headrr.php
if ( ! function_exists( '_wp_render_title_tag' ) ) : function theme_slug_render_title() { echo '<title>' . wp_title( '|', false, 'right' ) . "</title>\n"; } add_action( 'wp_head', 'theme_slug_render_title' ); endif;
The theme going this update?
Thank you
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Title tag WP 4.1’ is closed to new replies.