0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

投稿記事を表示するときにthe_content(); ではなくthe_excerpt();で表示する

Posted at

知識の整理のために以前学習したデイトラというオンラインサービスの上級編を2周目しています。

そのなかで、あれっと思ったのが投稿記事一覧を表示するときに投稿記事の本文の一部を表示させるときのタグです。

実案件で確かthe_contentでやっていて、文字数の制御をfunctions.phpで行っていたのですがthe_excerpts();を使えば簡単に制御できるんですね。笑
あかんですねやっぱり忘れちゃうなぁ。

174cc2be7bed3e3ab782a995cfdb6da2.png

実際にこのように表示されます。
ちなみに、ここを入力しないと本文から110文字表示されます。(デフォルト値)
e65e84156ae47c0909e323f57085d652.png

参考(https://wpdocs.osdn.jp/%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E3%82%BF%E3%82%B0/the_excerpt)

表示内容を変えることもできますので、ご参考まで。

6b96a11c3444be417290c9d93b82be93.png

functions.php
//文字数を20字に制御
function custom_excerpt_length( $length ) {
  return 20;	
}	
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

//[...]を[もっと読ませて〜]に変更
function new_excerpt_more($more) {
	return '[もっと読ませて〜]';
}
add_filter('excerpt_more', 'new_excerpt_more');

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?