Opened 8 years ago
Closed 7 years ago
#40814 closed enhancement (fixed)
Order of page title parts
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 4.9 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Login and Registration | Keywords: | has-patch good-first-bug needs-testing |
Focuses: | Cc: |
Description
The order of page title parts in wp-login.php is inconsistent with the rest of the site pages.
For example, in wp-login.php we have this arrangement:
Sitename Separator Pagename
For the rest of the site we have this arrangement:
Pagename Separator Sitename
I suggest we modify the order of the page title parts in wp-login.php to match page titles elsewhere.
Attachments (1)
Change History (14)
This ticket was mentioned in Slack in #core by nishitlangaliya. View the logs.
8 years ago
#3
@
8 years ago
- Component changed from General to Login and Registration
- Milestone changed from Awaiting Review to 4.9
- Owner set to SergeyBiryukov
- Status changed from new to reviewing
#4
follow-up:
↓ 5
@
8 years ago
Related is #40812. The page title separator character used in wp-login.php is inconsistent with the separator used in page titles elsewhere.
Depending on is_rtl()
, wp-login.php will use either the ›
or ‹
characters whereas the rest of the site uses a hyphen (although the hyphen may possibly be an –
).
#5
in reply to:
↑ 4
@
8 years ago
Hi @henry.wright ,
I have added patch to ticket please check for the same and let me know any changes required.
Replying to henry.wright:
Related is #40812. The page title separator character used in wp-login.php is inconsistent with the separator used in page titles elsewhere.
Depending on
is_rtl()
, wp-login.php will use either the›
or‹
characters whereas the rest of the site uses a hyphen (although the hyphen may possibly be an–
).
Fixed issue - 40814