Great guide.
The only hard thing I see is growing the social media accounts. I suck on gaining followers and building fan pages.
You have to add the correct function to your functions.php file. The one I posted in my first post is incomplete. I have posted a correct version somewhere in this thread. Just to be sure, here it is again:
Code: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; }