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 |
|---|---|
| 498 | if ( $postmeta) { foreach ($postmeta as $p) { |
| 499 | $key = $this->get_tag( $p, 'wp:meta_key' ); |
| 500 | $value = $this->get_tag( $p, 'wp:meta_value' ); |
| 501 | $value = stripslashes($value); // add_post_meta() will escape. |
| 502 | |
| 503 | $this->process_post_meta($post_id, $key, $value); |
| 504 | |
| 505 | } } |
| 506 | |
| 507 | do_action('import_post_added', $post_id); |
| 508 | print "</li>\n"; |
| 509 | } |
| 510 | |
| 511 | function process_post_meta($post_id, $key, $value) { |
| 512 | // the filter can return false to skip a particular metadata key |
| 513 | $_key = apply_filters('import_post_meta_key', $key); |
| 514 | if ( $_key ) { |
| 515 | add_post_meta( $post_id, $_key, $value ); |
| 516 | do_action('import_post_meta', $post_id, $_key, $value); |