回答編集履歴
1
追記
answer
CHANGED
@@ -1,2 +1,14 @@
|
|
1
1
|
使用しているテーマ名が分からないのでファイル名等違うかもしれませんが
|
2
|
-
通常なら`home.php`を編集し、`<?php the_content(); ?>`の記述を削除もしくはコメントアウトすれば本文は表示されなくなります。
|
2
|
+
通常なら`home.php`を編集し、`<?php the_content(); ?>`の記述を削除もしくはコメントアウトすれば本文は表示されなくなります。
|
3
|
+
|
4
|
+
----
|
5
|
+
【追記】
|
6
|
+
twenty sixteenなら`twentysixteen/template-parts/content.php`を編集して`the_content( sprintf...`とある部分(デフォルトで27~30行目ぐらい)をコメントアウトしてあげれば消えます
|
7
|
+
```PHP
|
8
|
+
<?php
|
9
|
+
/* translators: %s: Name of current post */
|
10
|
+
/* the_content( sprintf(
|
11
|
+
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
|
12
|
+
get_the_title()
|
13
|
+
) ); */
|
14
|
+
```
|