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 |
---|---|
1081 | case 'delete_post_meta': |
1082 | case 'add_post_meta': |
1083 | $post = get_post( $args[0] ); |
1084 | $post_type_object = get_post_type_object( $post->post_type ); |
1085 | $caps = map_meta_cap( $post_type_object->cap->edit_post, $user_id, $post->ID ); |
1086 |
|
1087 | $meta_key = isset( $args[ 1 ] ) ? $args[ 1 ] : false; |
1088 |
|
1089 | if ( $meta_key && has_filter( "auth_post_meta_{$meta_key}" ) ) { |
1090 | $allowed = apply_filters( "auth_post_meta_{$meta_key}", false, $meta_key, $post->ID, $user_id, $cap, $caps ); |
1091 | if ( ! $allowed ) |
1092 | $caps[] = $cap; |
1093 | } elseif ( $meta_key && is_protected_meta( $meta_key, 'post' ) ) { |
1094 | $caps[] = $cap; |
1095 | } |
1096 | break; |
1097 | case 'edit_comment': |
1098 | $comment = get_comment( $args[0] ); |
1099 | $post = get_post( $comment->comment_post_ID ); |