Add content after every post – WP Filter Hooks
Add inside the functions.php file
add_filter( 'the_content', 'pixalty_amend_content' );
function pixalty_amend_content( $content ) {
$additional_content = 'YOUR CONTENT GOES HERE';
$content = $content . $additional_content;
return $content;
}