WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
2120 | } |
2121 |
|
2122 | if ( 'trash' != $the_comment_status ) { |
2123 | $actions['edit'] = "<a href='comment.php?action=editcomment&c={$comment->comment_ID}' title='" . esc_attr__('Edit comment') . "'>". __('Edit') . '</a>'; |
2124 | $actions['quickedit'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\');return false;" class="vim-q" title="'.esc_attr__('Quick Edit').'" href="#">' . __('Quick Edit') . '</a>'; |
2125 | if ( 'spam' != $the_comment_status ) |
2126 | $actions['reply'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\');return false;" class="vim-r" title="'.esc_attr__('Reply to this comment').'" href="#">' . __('Reply') . '</a>'; |
2127 | } |
2128 |
|
2129 | $actions = apply_filters( 'comment_row_actions', array_filter($actions), $comment ); |
2130 |
|
2131 | $i = 0; |
2132 | echo '<div class="row-actions">'; |
2133 | foreach ( $actions as $action => $link ) { |
2134 | ++$i; |
2135 | ( ( ('approve' == $action || 'unapprove' == $action) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | '; |
2136 |
|
2137 | // Reply and quickedit need a hide-if-no-js span when not added with ajax |
2138 | if ( ('reply' == $action || 'quickedit' == $action) && ! $from_ajax ) |