📜  将图像保存到自定义元框 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:16.907000             🧑  作者: Mango

代码示例1
function save_joe_details($post_id){
  global $post;
  if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
  return $post_id;
  update_post_meta($post->ID, "custom_field_image", $_POST["custom_field_image"] );
}
add_action('save_post', 'save_joe_details');