Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_row_actions

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
757            * dashboard widget.
758            *
759            * @since 2.6.0
760            *
761            * @param string[]   $actions An array of comment actions. Default actions include:
762            *                            'Approve', 'Unapprove', 'Edit', 'Reply', 'Spam',
763            *                            'Delete', and 'Trash'.
764            * @param WP_Comment $comment The comment object.
765            */
766           $actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment );
767
768           $i = 0;
769
770           foreach ( $actions as $action => $link ) {
771                ++$i;
772
773                if ( ( ( 'approve' === $action || 'unapprove' === $action ) && 2 === $i )
774                     || 1 === $i
775                ) {