文字数の表示制限[抜粋]

<?php
$str = strip_tags($post->post_content);
$str = $post->post_content;
$str = mb_substr($str, 0, 27, utf8);
print "$str";
?>

$str = mb_substr($str, 0, 27, “〜” ,utf8);
とかだと上手く動かない場合がある
さくらサーバなどだとサーバの設定を一部変更する必要がある。
こまったね。
$str = strip_tags($post->post_content);
抜粋表示させる場合、本文中にタグが含まれている可能性もあるのでタグを除去することも忘れぬように注意

strip_tagsの挙動について
-http://php.s3.to/man/function.strip-tags.html