Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #20977, comment 7


Ignore:
Timestamp:
05/09/2016 08:47:48 PM (8 years ago)
Author:
rachelbaker
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #20977, comment 7

    initial v1  
    1 We don't really have a `comment_status` column in the database.  We *DO* have `comment_approved` which have a value of: `1`, `0`, `spam` or `trash` (check out those amazing mixed types!).
     1We don't really have a `comment_status` column in the database.  We *DO* have `comment_approved` which can have a value of: `1`, `0`, `spam` or `trash` (check out those amazing mixed types!).
    22
    33I want to understand the different use-cases for custom comment statuses. That would make it easier to know if we should solve this by adding a filter or two OR we need to add registration functions and handle more like custom `post_status`.