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 |
---|---|
172 | if ( !empty( $_REQUEST['s'] ) ) |
173 | $link = add_query_arg( 's', esc_attr( stripslashes( $_REQUEST['s'] ) ), $link ); |
174 | */ |
175 | $status_links[$status] = "<a href='$link'$class>" . sprintf( |
176 | translate_nooped_plural( $label, $num_comments->$status ), |
177 | number_format_i18n( $num_comments->$status ) |
178 | ) . '</a>'; |
179 | } |
180 |
|
181 | $status_links = apply_filters( 'comment_status_links', $status_links ); |
182 | return $status_links; |
183 | } |
184 |
|
185 | function get_bulk_actions() { |
186 | global $comment_status; |
187 |
|
188 | $actions = array(); |
189 | if ( in_array( $comment_status, array( 'all', 'approved' ) ) ) |
190 | $actions['unapprove'] = __( 'Unapprove' ); |