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
566            * dashboard widget.
567            *
568            * @since 2.6.0
569            *
570            * @param array  $actions An array of comment actions. Default actions include:
571            *                        'Approve', 'Unapprove', 'Edit', 'Reply', 'Spam',
572            *                        'Delete', and 'Trash'.
573            * @param object $comment The comment object.
574            */
575           $actions = apply_filters( 'comment_row_actions', array_filter($actions), $comment );
576
577           $i = 0;
578           foreach ( $actions as $action => $link ) {
579                ++$i;
580                ( ( ('approve' == $action || 'unapprove' == $action) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | ';
581
582                // Reply and quickedit need a hide-if-no-js span
583                if ( 'reply' == $action || 'quickedit' == $action )
584                     $action .= ' hide-if-no-js';