Plugin to display text before a post

smraj,

try to use a filter. Use this code snippet. Place this in our theme’s functions.php file

add_filter('the_content', 'adddata');

function adddata($content) {

$pre_post_text="Welcome to my  post!..........";

// only display this on single post pages
if(is_single() && !is_home()) {
  $content = $pre_post_text.$content;
}
return $content;
}