custom meta box data not saved
So actually, for posts of the type attachment, you should use the edit_attachment (action) hook and not save_post_attachment: add_action( ‘edit_attachment’, ‘save_image_link’ ); // use edit_attachment //add_action( ‘save_post_attachment’, ‘save_image_link’ ); // not save_post_attachment Secondly, your meta box is not currently displaying the meta value, so you should display the value in the input field, and you … Read more