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 |
---|---|
402 | } |
403 | } |
404 |
|
405 | // Adds an 'x' link next to author URLs, clicking will remove the author URL and show an undo link |
406 | public static function remove_comment_author_url() { |
407 | if ( !empty( $_POST['id'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) { |
408 | $comment = get_comment( intval( $_POST['id'] ), ARRAY_A ); |
409 | if ( $comment && current_user_can( 'edit_comment', $comment['comment_ID'] ) ) { |
410 | $comment['comment_author_url'] = ''; |
411 | do_action( 'comment_remove_author_url' ); |
412 | print( wp_update_comment( $comment ) ); |
413 | die(); |
414 | } |
415 | } |
416 | } |
417 |
|
418 | public static function add_comment_author_url() { |
419 | if ( !empty( $_POST['id'] ) && !empty( $_POST['url'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) { |
420 | $comment = get_comment( intval( $_POST['id'] ), ARRAY_A ); |