Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_{$old_status}_to_{$new_status}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1457            * Fires when the comment status is in transition from one specific status to another.
1458            *
1459            * The dynamic portions of the hook name, `$old_status`, and `$new_status`,
1460            * refer to the old and new comment statuses, respectively.
1461            *
1462            * @since 2.7.0
1463            *
1464            * @param WP_Comment $comment Comment object.
1465            */
1466           do_action( "comment_{$old_status}_to_{$new_status}", $comment );
1467      }
1468      /**
1469       * Fires when the status of a specific comment type is in transition.
1470       *
1471       * The dynamic portions of the hook name, `$new_status`, and `$comment->comment_type`,
1472       * refer to the new comment status, and the type of comment, respectively.
1473       *
1474       * Typical comment types include an empty string (standard comment), 'pingback',
1475       * or 'trackback'.