まずはindex.php、category.php、content.phpなどに抜粋のタグが記述されていることが前提になります。
<?php the_excerpt(); ?>
デフォルトは110文字
文字数を制限したい時には下記を記述
<?php echo mb_substr(get_the_excerpt(), 0, 30); ?>
日本語や中国語で「続きを読む」「看全部」を追加する。
使用しているテーマの functions.phpに下記コードを追加。
//the_excerptに続きを読むを追加 function new_excerpt_more($post) { return '<a href="'. get_permalink($post->ID) . ' class="more" >' . '...看全部' . '</a>'; } add_filter('excerpt_more', 'new_excerpt_more');
参考サイト busilab.com…