Opened 10 years ago
Closed 10 years ago
#34990 closed defect (bug) (invalid)
Weird functionality of current_theme_supports('title-tag') in WordPress 4.4
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 4.4 |
| Component: | Themes | Keywords: | |
| Focuses: | Cc: |
Description
It seems that current_theme_supports('title-tag') returns false for themes that have the title-tag feature enabled, like TwentyFifteen, under WordPress 4.4.
Change History (3)
#2
@
10 years ago
Oh, I see. I used the following code in a testing plugin (was trying to add some logic based on the theme's features), while the TwentyFifteen theme, which has title-tag support was activated:
if ( ! current_theme_supports('title-tag') ) {
var_dump('12345');
}
Now I see this was a mistake. Please feel free to close this issue as invalid.
Thanks for your response and I'm sorry about that!
George
Version 0, edited 10 years ago
by
(next)
Note: See
TracTickets for help on using
tickets.
Where are you checking
current_theme_supports('title-tag')? Theme support is added during theafter_setup_themeaction, so if you check it further up it won't work.Tests_General_DocumentTitleandTests_Theme_Supportcheck for that, so I'm not sure something broke in 4.4