Docs: Correct description for `wp_set_comment_status` hook.
The action fires immediately after transitioning a comment's status from one to another in the database and removing the comment from the object cache, but prior to all status transition hooks. Props davidbaumwald, henry.wright. Fixes #51481. Built from https://develop.svn.wordpress.org/trunk@49111 git-svn-id: http://core.svn.wordpress.org/trunk@48873 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5affd982a0
commit
4419f9b889
|
@ -2401,8 +2401,8 @@ function wp_set_comment_status( $comment_id, $comment_status, $wp_error = false
|
||||||
$comment = get_comment( $comment_old->comment_ID );
|
$comment = get_comment( $comment_old->comment_ID );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fires immediately before transitioning a comment's status from one to another
|
* Fires immediately after transitioning a comment's status from one to another in the database
|
||||||
* in the database.
|
* and removing the comment from the object cache, but prior to all status transition hooks.
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.6-alpha-49110';
|
$wp_version = '5.6-alpha-49111';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue