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 |
---|---|
457 | } |
458 | } |
459 |
|
460 | public static function add_comment_author_url() { |
461 | if ( !empty( $_POST['id'] ) && !empty( $_POST['url'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) { |
462 | $comment_id = intval( $_POST['id'] ); |
463 | $comment = get_comment( $comment_id, ARRAY_A ); |
464 | if ( $comment && current_user_can( 'edit_comment', $comment['comment_ID'] ) ) { |
465 | $comment['comment_author_url'] = esc_url( $_POST['url'] ); |
466 | do_action( 'comment_add_author_url' ); |
467 | print( wp_update_comment( $comment ) ); |
468 | die(); |
469 | } |
470 | } |
471 | } |
472 |
|
473 | public static function comment_row_action( $a, $comment ) { |
474 | $akismet_result = get_comment_meta( $comment->comment_ID, 'akismet_result', true ); |
475 | $akismet_error = get_comment_meta( $comment->comment_ID, 'akismet_error', true ); |