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
585
586                $format = '<a data-comment-id="%d" data-post-id="%d" data-action="%s" class="%s" aria-label="%s" href="#">%s</a>';
587
588                $actions['quickedit'] = sprintf( $format, $comment->comment_ID, $comment->comment_post_ID, 'edit', 'vim-q comment-inline', esc_attr__( 'Quick edit this comment inline' ), __( 'Quick&nbsp;Edit' ) );
589
590                $actions['reply'] = sprintf( $format, $comment->comment_ID, $comment->comment_post_ID, 'replyto', 'vim-r comment-inline', esc_attr__( 'Reply to this comment' ), __( 'Reply' ) );
591           }
592
593           /** This filter is documented in wp-admin/includes/dashboard.php */
594           $actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment );
595
596           $i = 0;
597           $out .= '<div class="row-actions">';
598           foreach ( $actions as $action => $link ) {
599                ++$i;
600                ( ( ( 'approve' === $action || 'unapprove' === $action ) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | ';
601
602                // Reply and quickedit need a hide-if-no-js span when not added with ajax
603                if ( ( 'reply' === $action || 'quickedit' === $action ) && ! wp_doing_ajax() )