Opened 21 months ago
Closed 19 months ago
#18591 closed enhancement (fixed)
mytheme-child does not work when installing a new blog
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.3 |
| Component: | Themes | Version: | 3.3 |
| Severity: | normal | Keywords: | has-patch commit |
| Cc: |
Description
If I choose own theme when installing a blog
define ('WP_DEFAULT_THEME', 'mytheme');
then it works, but if I choose child theme
define ('WP_DEFAULT_THEME', 'mytheme-child');
then I must go to Appearance -> Themes to choose it manually. She was not taken up automatically.
Attachments (2)
Change History (12)
comment:1
minimarket — 21 months ago
- Keywords needs-patch added
- Type changed from defect (bug) to enhancement
SergeyBiryukov — 21 months ago
comment:3
follow-up:
↓ 4
SergeyBiryukov — 21 months ago
- Keywords has-patch added; needs-patch removed
get_themes() works fine there.
comment:4
in reply to:
↑ 3
minimarket — 21 months ago
- Resolution set to fixed
- Status changed from new to closed
Replying to SergeyBiryukov:
get_themes() works fine there.
Thank you! The patch is really working fine.
- Component changed from General to Themes
- Resolution fixed deleted
- Status changed from closed to reopened
Tickets are marked as fixed when a change is made to the WordPress codebase, the patch here still needs to be committed before the ticket will be marked as such.
comment:6
in reply to:
↑ 5
minimarket — 21 months ago
Replying to dd32:
Tickets are marked as fixed when a change is made to the WordPress codebase, the patch here still needs to be committed before the ticket will be marked as such.
Oops.. Sorry, This is my first ticket...
comment:7
SergeyBiryukov — 21 months ago
- Milestone changed from Awaiting Review to 3.3
Moving to 3.3 for consideration.
comment:8
DrewAPicture — 19 months ago
Tested 18591.2.patch on trunk, works as advertised.
comment:10
ryan — 19 months ago
- Owner set to ryan
- Resolution set to fixed
- Status changed from reopened to closed
In [19249]:

Source reference for those interested: populate_options()
Depending on the state of the loading at that point in time, we could query for the theme through get_themes() and extract the template from there, Alternatively, we could add a new define for the Template if we're unable to query at that point in time.