Guest User

Untitled

a guest
Jan 17th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. add_action('rest_insert_attachment', function($attachment, $request, $creating) {
  3. $data = $request->get_params(); // Extra data that was sent to /wp/v2/media
  4. // In this example we can use $data['entry_id']
  5. // Something like: update_post_meta((int) $data['entry_id'], 'attachment_id', $attachment['ID']);
  6. });
Add Comment
Please, Sign In to add comment