Changes between Initial Version and Version 2 of Ticket #35214
- Timestamp:
- 12/24/2015 12:38:12 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35214
- Property Owner set to aaroncampbell
-
Property
Status
changed from
new
toaccepted
-
Ticket #35214 – Description
initial v2 3 3 Here's a rough list of things that need to be looked at and addressed: 4 4 * UI/UX - In order for custom comment types to be really useful, we need to put some serious thought into the UI/UX surrounding comments in the admin. 5 * The `comment_type` field needs to start using 'comment' instead of ''for comments. This will mean an upgrade routine as well as some back-compat work.5 * The `comment_type` field needs to start using `'comment'` instead of `''` for comments. This will mean an upgrade routine as well as some back-compat work. 6 6 * We need to decide what to do about non-default comment types in various admin areas (comments table, recent comments, etc). The thing that makes most sense is for `WP_Comment_Query` to be adjusted to only show default comment types (comments, pingbacks, and trackbacks) by default. Additional comment types would then be handled by whatever plugin or theme adds them. Unfortunately, this is a breaking change (comment:58:ticket:12668) because right now those areas show all comment types. Maybe we can create new management areas to be able to pull these out of the default one? Lets put our heads together. 7 7 * A lot of existing functions, like `comment_type()`, will need to be fixed to make room for newly registered comment types and their registered strings.