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
734                     $comment->comment_post_ID,
735                     'replyto',
736                     'vim-r comment-inline',
737                     esc_attr__( 'Reply to this comment' ),
738                     __( 'Reply' )
739                );
740           }
741
742           /** This filter is documented in wp-admin/includes/dashboard.php */
743           $actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment );
744
745           $i    = 0;
746           $out .= '<div class="row-actions">';
747           foreach ( $actions as $action => $link ) {
748                ++$i;
749                ( ( ( 'approve' === $action || 'unapprove' === $action ) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | ';
750
751                // Reply and quickedit need a hide-if-no-js span when not added with ajax.
752                if ( ( 'reply' === $action || 'quickedit' === $action ) && ! wp_doing_ajax() ) {