function add_before_content($content) {
return 'Before content area '.$content;
}
add_filter('the_content', add_before_content);
It is working and inserting text in starting on the single post. But I want to add text before or after the featured image.