statuses (of post comment user) (tag)
| get_post_stati() | Gets all existing post statuses as an array of names or an array of objects. |
| get_post_status() | Gets the status of the specified post: publish, draft, etc. |
| get_post_status_object() | Gets the data object of the specified post status. |
| get_post_statuses() | Returns an array of the following basic post statuses: Draft, Pending, Private, Publish. |
| get_status_header_desc() | Gets the text (message) of the HTTP response status code. For example, "Not Found". |
| register_post_status() | Function for creating a new or editing an old post status, based on the provided parameters. |
| update_user_status() | Updates the user status in the database. For multisites. |
| wp_set_comment_status() | Sets the comment status: hold, approve, spam. |
| wp_transition_comment_status() | Calls special hooks when the status of a comment changes from one to another: for example, from unapproved to approved. |
| wp_transition_post_status() | Fires action hooks related to the transitioning of a post's status. (from draft to publish, from publish to private, etc.). |