i could fix this

found it out!!!
just tell me what is the function to echo the post description ??? (content text of the post)


PHP Code: 
    <meta property="og:description" content="<?php
    
while(have_posts()):the_post();
    
$out_excerpt str_replace(array("\r\n""\r""\n"), ""get_the_excerpt());
    echo 
apply_filters('the_excerpt_rss'$out_excerpt);
    endwhile;     
?>" />
that problem is having just because of this code in index.php ..

tell me how to fix it out ???


---------- Post added at 04:55 PM ---------- Previous post was at 04:36 PM ----------

Fixed by Myself

just replacing the above code with the following solved my problem

PHP Code: 
 <meta property="og:description" content="<?php echo strip_tags(get_the_excerpt($post->ID)); ?>" />



everything is now fine

Thanks to all of you , for giving me idea , which helped me in figuring out the problem
special thanks to mintcold ...
rep added bro