Opened 9 years ago
Closed 9 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
@
9 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
Note: See
TracTickets for help on using
tickets.
Where are you checking
current_theme_supports('title-tag')
? Theme support is added during theafter_setup_theme
action, so if you check it further up it won't work.Tests_General_DocumentTitle
andTests_Theme_Support
check for that, so I'm not sure something broke in 4.4