Guest User

Untitled

a guest
Jan 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. function attachToPost($attachmentId, $postId){
  2. return wp_update_post(array(
  3. 'ID' => (int)$attachmentId,
  4. 'post_parent' => (int)$postId
  5. ));
  6. }
Add Comment
Please, Sign In to add comment