Title: Double HTML title
Last modified: August 31, 2016

---

# Double HTML title

 *  [Sören Müller](https://wordpress.org/support/users/pattyland/)
 * (@pattyland)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/double-html-title/)
 * As the theme adds theme support for “title-tag” it should use wp_title() in header.
   php
 * If you don’t disable wp_title() you will get double html title tags!
 * Greets, Sören

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [gilbertber](https://wordpress.org/support/users/gilbertber/)
 * (@gilbertber)
 * [10 years ago](https://wordpress.org/support/topic/double-html-title/#post-7221830)
 * Hi Sören, how disable wp_title() ? rgds,
 *  [Stephen Harris](https://wordpress.org/support/users/stephenharris/)
 * (@stephenharris)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/double-html-title/#post-7221847)
 * Since the theme registers support for the title tag: [https://themes.trac.wordpress.org/browser/yoko/1.2.1/functions.php#L99](https://themes.trac.wordpress.org/browser/yoko/1.2.1/functions.php#L99)–
   it signals to WordPress that WordPress should add the title tag.
 * Unfortunately, the theme also manually adds the title tag: [https://themes.trac.wordpress.org/browser/yoko/1.2.1/header.php#L11](https://themes.trac.wordpress.org/browser/yoko/1.2.1/header.php#L11)–
   this causes the duplication in the title tag as Sören reported.
 * The fix is to remove one of those two lines (preferably the manual title tag 
   in header.php). Alternatively, if you really don’t want to edit the theme you
   can use this fix (untested!)
 *     ```
       add_action( 'after_setup_theme', function(){
            remove_theme_support( 'title-tag' );
       }, 20 );
       ```
   
 * (use that in a child theme, or a plug-in).

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Double HTML title’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/yoko/1.2.5/screenshot.png)
 * Yoko
 * [Support Threads](https://wordpress.org/support/theme/yoko/)
 * [Active Topics](https://wordpress.org/support/theme/yoko/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/yoko/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/yoko/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [Stephen Harris](https://wordpress.org/support/users/stephenharris/)
 * Last activity: [9 years, 10 months ago](https://wordpress.org/support/topic/double-html-title/#post-7221847)
 * Status: not resolved