descriptionをhome.phpとかtopics.phpに表示させたい
1 2 3 4 5 6 7 8 9 10 | <?php // 抜粋を文字数制限をかけて表示 $excerpt_num = 72; // 制限をかけるバイト数を指定 全角=2バイト 半角=1バイト $post_excerpt = strip_tags (get_the_excerpt()); // 抜粋を取得 if (mb_strlen( $post_excerpt )> $excerpt_num ) { // 抜粋が指定したバイト数より多い時に TRUE $content = mb_substr( $post_excerpt ,0, $excerpt_num ); // 同じバイト数を指定 echo str_replace ( array ( "\r" , "\n" ), '' , $content ).・・・; // 改行の削除、末尾に「...」を追加 } else { echo str_replace ( array ( "\r" , "\n" ), '' , $post_excerpt ); // 改行の削除 } ?> |