Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #35214


Ignore:
Timestamp:
12/24/2015 12:38:12 AM (8 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35214

    • Property Owner set to aaroncampbell
    • Property Status changed from new to accepted
  • Ticket #35214 – Description

    initial v2  
    33Here's a rough list of things that need to be looked at and addressed:
    44* 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.
    66* 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.
    77* 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.