以下の内容はhttps://blog.systemjp.net/entry/2017/05/04/235458より取得しました。


Wordpress で、投稿の本文を文字数制限し、特定のHTMLタグを残し、それ以外のHTMLタグを除外する

<?php
if(mb_strlen($post->post_content, 'UTF-8')>120){
    $content= mb_substr(strip_tags($post->post_content), 0, 120, 'UTF-8');
    echo $content.'……';
}else{
    echo strip_tags($post->post_content);
}
?>

ネタ元




以上の内容はhttps://blog.systemjp.net/entry/2017/05/04/235458より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14