You appear to be a bot. Output may be restricted
Description
Save the "oik custom image link URL"We save the value even if it's blanked out. Note: The custom meta field is prefixed with an underscore but the field name is not. Paired with 'attachment_fields_to_edit' See also comments for oik_attachment_fields_to_edit()
Usage
oik_attachment_fields_to_save( $post, $attachment );
Parameters
- $post
- ( mixed ) required –
- $attachment
- ( mixed ) required –
Returns
voidSource
File name: oik/oik.phpLines:
1 to 5 of 5
function oik_attachment_fields_to_save( $post, $attachment) { $link = bw_array_get( $attachment, "bw_image_link", null ) ; update_post_meta( $post['ID'], '_bw_image_link', $link ); return $post; }View on GitHub View on Trac