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 |
|---|---|
| 823 | add_action('admin_action_akismet_recheck_queue', 'akismet_recheck_queue'); |
| 824 | |
| 825 | // Adds an 'x' link next to author URLs, clicking will remove the author URL and show an undo link |
| 826 | function akismet_remove_comment_author_url() { |
| 827 | if ( !empty($_POST['id'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) { |
| 828 | global $wpdb; |
| 829 | $comment = get_comment( intval($_POST['id']), ARRAY_A ); |
| 830 | if (current_user_can('edit_comment', $comment['comment_ID'])) { |
| 831 | $comment['comment_author_url'] = ''; |
| 832 | do_action( 'comment_remove_author_url' ); |
| 833 | print(wp_update_comment( $comment )); |
| 834 | die(); |
| 835 | } |
| 836 | } |
| 837 | } |
| 838 | |
| 839 | add_action('wp_ajax_comment_author_deurl', 'akismet_remove_comment_author_url'); |
| 840 | |
| 841 | function akismet_add_comment_author_url() { |