使用added_post_meta
和update_post_meta
使用$post_id
. 有关扩展属性,请参见post 和this 获取更多图像功能。
add_action(\'added_post_meta\', \'wpse_20151218_after_post_meta\', 10, 4);
function wpse_20151218_after_post_meta($meta_id, $post_id, $meta_key, $meta_value) {
if($meta_key === \'_wp_attachment_metadata\') {
// Add Custom Field
update_post_meta($post_id, \'_example_meta_key\', \'1234567\');
$attachment_meta = get_post_meta($post_id);
}
}