
<?php
$content1 = apply_filters('the_content', $post->post_content, );
echo $content1;
?> 5
●157
$cumle = "hello world php";
$kelimeler = explode(' ', $cumle);
if(count($kelimeler) < 50){
echo $cumle;
}else{
echo implode(' ',array_slice($kelimeler, 0,50)) . '...';
}