目次
参考サイト:
https://www.rockstream-jp.com/wordpress-title-new-line/
準備:
1.下記から「関連記事を出力」をコピー、functions.phpにペースト
library/functions/entry-function.php
コード
該当箇所に下記記述。
<?php if(mb_strlen($related_post->post_content,'UTF-8')>100){ $content= str_replace('\n', '', mb_substr(strip_tags($related_post-> post_content), 0, 100,'UTF-8')) //htmlタグや改行コードを削除; echo $content.'…'; }else{ echo str_replace('\n', '', strip_tags($related_post->post_content)); } ?>
コメント