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 |
|---|---|
| 1100 | case 'delete_post_meta': |
| 1101 | case 'add_post_meta': |
| 1102 | $post = get_post( $args[0] ); |
| 1103 | $post_type_object = get_post_type_object( $post->post_type ); |
| 1104 | $caps = map_meta_cap( $post_type_object->cap->edit_post, $user_id, $post->ID ); |
| 1105 | |
| 1106 | $meta_key = isset( $args[ 1 ] ) ? $args[ 1 ] : false; |
| 1107 | |
| 1108 | if ( $meta_key && has_filter( "auth_post_meta_{$meta_key}" ) ) { |
| 1109 | $allowed = apply_filters( "auth_post_meta_{$meta_key}", false, $meta_key, $post->ID, $user_id, $cap, $caps ); |
| 1110 | if ( ! $allowed ) |
| 1111 | $caps[] = $cap; |
| 1112 | } elseif ( $meta_key && is_protected_meta( $meta_key, 'post' ) ) { |
| 1113 | $caps[] = $cap; |
| 1114 | } |
| 1115 | break; |
| 1116 | case 'edit_comment': |
| 1117 | $comment = get_comment( $args[0] ); |
| 1118 | $post = get_post( $comment->comment_post_ID ); |