Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: import_post_meta_key

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
604
605           } }
606
607           do_action('import_post_added', $post_id);
608           print "</li>\n";
609      }
610
611      function process_post_meta($post_id, $key, $value) {
612           // the filter can return false to skip a particular metadata key
613           $_key = apply_filters('import_post_meta_key', $key);
614           if ( $_key ) {
615                add_post_meta( $post_id, $_key, $value );
616                do_action('import_post_meta', $post_id, $_key, $value);
617           }
618      }
619
620      function process_attachment($postdata, $remote_url) {
621           if ($this->fetch_attachments and $remote_url) {
622                printf( __('Importing attachment <em>%s</em>... '), htmlspecialchars($remote_url) );