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
817                     $comment->comment_post_ID,
818                     'replyto',
819                     'vim-r comment-inline',
820                     esc_attr__( 'Reply to this comment' ),
821                     __( 'Reply' )
822                );
823           }
824
825           /** This filter is documented in wp-admin/includes/dashboard.php */
826           $actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment );
827
828           $always_visible = false;
829
830           $mode = get_user_setting( 'posts_list_mode', 'list' );
831
832           if ( 'excerpt' === $mode ) {
833                $always_visible = true;
834           }
835