Opened 3 years ago
Last modified 3 years ago
#49438 new defect (bug)
Twenty Twenty: h1 when is_front_page() is a static page
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | normal | Version: | 5.3 |
Component: | Bundled Theme | Keywords: | has-patch reporter-feedback |
Focuses: | Cc: |
Description (last modified by )
Hi,
I see that template-tags.php doesn't assign the h1 to the site title correctly when you assign a static page to the front page.
It's due to the code
'condition' => ( is_front_page() || is_home() ) && ! is_page()
is_page(), infact, returns true on is_front_page() in that case.
I suppose it should be:
'condition' => is_front_page() || ( is_home() && ! is_page() )
Diff patch attached.
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
I tested
Twenty Twenty
with a static page set as the homepage and I am seeing the page title as anH1
. @SGr33n Could you please confirm that you are still seeing an issue?