ワードプレス
文字数制限表示
strip_tags でテキストデータのみ。
<?php echo mb_substr(strip_tags(post_custom(フィールド名)),0,60); ?>
ソース上でのタグ・改行削除(discriptionなどで)
<?php if(mb_strlen($post->post_content,'UTF-8')>200){ $content= str_replace(array("\r\n","\n","\r"), '', mb_substr(strip_tags($post-> post_content), 0, 200,'UTF-8')); echo $content.''; } ?>