How to add something after a function

You can put this example into your functions.php file :

function insertContent($content) {

   $content.= "<div>";
   $content.="additional content";
   $content.= "</div>";

   return $content;
}
// put this line in your custom function or in your template file (single)
add_filter ('the_content', 'insertContent');

Bye !