Would it be possible to get AddToAny plugin integration for Atahualpa? That would be so great. Isn't AddToAny one of the most downloaded sharing plugins on WordPress? It's frustrating to have custom code overwritten with theme updates I use this plugin on multiple sites. Simple code - if it could just be integrated.
// For the "AddToAny" plugin
if ( strpos($postinfo_string,'%addtoany%') !== FALSE ) {
ob_start();
if ( function_exists('ADDTOANY_SHARE_SAVE_KIT') ) {
ADDTOANY_SHARE_SAVE_KIT();
$addtoany = ob_get_contents();
} else {
$addtoany = "";
}
ob_end_clean();
$postinfo = str_replace("%addtoany%", $addtoany, $postinfo);
}