add_filter( 'afip_new_post_content', 'myprefix_change_afip_post_content', 10, 2 );function myprefix_change_afip_post_content( $post_content, $attachment_id ) {
$my_uploaded_image = wp_get_attachment_image_src( $attachment_id );
$post_content .= '<img src="' . $my_uploaded_image[0] . '">';
return $post_content;
}