How to set author for post AND post attachments
Use this in your theme’s functions.php: add_filter( ‘add_attachment’, ‘wpse_55801_attachment_author’ ); function wpse_55801_attachment_author( $attachment_ID ) { $attach = get_post( $attachment_ID ); $parent = get_post( $attach->post_parent ); $the_post = array(); $the_post[‘ID’] = $attachment_ID; $the_post[‘post_author’] = $parent->post_author; wp_update_post( $the_post ); }