• How would I be able to hook onto an attachment in real time on upload. So far I have found using the hook add_attachment. I want to be able retrieve the $post_id and the files metadata.

    I tried add_action(add_attachment, custom_add_attachment); but it’s not displaying the $post_id when I test it.

Viewing 1 replies (of 1 total)
  • add_action('add_attachment', 'kuaza_cdn_dosya_yukle');
    
    	function kuaza_add_attachment( $attachment_id ) {
    
    	// return $attachment_id;
    
    	}
Viewing 1 replies (of 1 total)
  • The topic ‘Hooking to attachments on upload’ is closed to new replies.