0
私はちょうどポストを持っており、抜粋を使用しようとしています。問題は、私はより多くのリンクがもっとうまくいきたいと思っていません。私はちょうど抜粋されている段落を表示したい。その卿をする方法。抜粋を表示するリンクまたは靴のトラッドモートリンク
私はちょうどポストを持っており、抜粋を使用しようとしています。問題は、私はより多くのリンクがもっとうまくいきたいと思っていません。私はちょうど抜粋されている段落を表示したい。その卿をする方法。抜粋を表示するリンクまたは靴のトラッドモートリンク
get_the_excerpt()を使用すると、最大数の文字を指定して抜粋を印刷できます。
// Add below code in your functions.php
function the_excerpt_max_charlength($charlength) {
$excerpt = get_the_excerpt();
$charlength++;
if (mb_strlen($excerpt) > $charlength) {
$subex = mb_substr($excerpt, 0, $charlength - 5);
$exwords = explode(' ', $subex);
$excut = - (mb_strlen($exwords[ count($exwords) - 1 ]));
if ($excut < 0) {
echo mb_substr($subex, 0, $excut);
} else {
echo $subex;
}
echo '[...]';
} else {
echo $excerpt;
}
}
// Pass character limit to the below function and display whenever you want.
the_excerpt_max_charlength(140);