#18891 closed defect (bug) (fixed)
wp_error does not recognize when a custom post type does not support excerpts
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 3.3 | Priority: | normal |
Severity: | normal | Version: | 3.2.1 |
Component: | General | Keywords: | has-patch |
Focuses: | Cc: |
Description
wp_error does not take into consideration if a custom post type does not support excerpts.
Steps to reproduce:
- Create a custom post type that does NOT support excerpts.
- Use wp_insert_post to insert the post
- print_r your error message and you'll see that wp_error is returns:
"Content, title, and excerpt are empty."
It should not mention excerpts being empty as the custom post type does not even support them.
Attachments (1)
Change History (8)
#3
@
14 years ago
- Resolution duplicate deleted
- Status changed from closed to reopened
Related, but doesn't look like an exact duplicate to me.
#18713 is about wp_insert_post()
bailing too early, while this ticket is about more accurate error message.
#5
follow-up:
↓ 6
@
14 years ago
- Milestone changed from Awaiting Review to 3.3
- Resolution set to fixed
- Status changed from reopened to closed
#6
in reply to:
↑ 5
;
follow-up:
↓ 7
@
14 years ago
Replying to SergeyBiryukov:
Doesn't this change mean that whole check now gets skipped if one or more of those fields aren't supported by the post type?
#7
in reply to:
↑ 6
@
14 years ago
Replying to johnbillion:
Replying to SergeyBiryukov:
Doesn't this change mean that whole check now gets skipped if one or more of those fields aren't supported by the post type?
Yes. It basically means this check no longer applies to any customized post types.
Is this a duplicate of #18713?