質問編集履歴

2

試したこと追記

2020/08/28 02:40

投稿

sawaii
sawaii

スコア2

test CHANGED
File without changes
test CHANGED
@@ -35,3 +35,67 @@
35
35
  記事は作成してますのであるはずなのですが。。
36
36
 
37
37
  引き続き調べます。
38
+
39
+
40
+
41
+ ### 試したこと2
42
+
43
+
44
+
45
+ front-page.phpに以下を記入しましたが、本文は表示されませんでした。
46
+
47
+ ```<?php
48
+
49
+ /* (ステップ1)データの取得 */
50
+
51
+ $query = new WP_Query(
52
+
53
+ array(
54
+
55
+ 'post_type' =>'report',
56
+
57
+ 'posts_per_page' =>1,
58
+
59
+ )
60
+
61
+ );
62
+
63
+ ?>
64
+
65
+ <?php
66
+
67
+ /* (ステップ2)データの表示 */
68
+
69
+ if ( $query->have_posts() ) : ?>
70
+
71
+ <div>
72
+
73
+ <?php while ( $query->have_posts() ) : $query->the_post();?>
74
+
75
+ <p><a href="<?php the_permalink(); ?>">
76
+
77
+ <?php the_title(); ?></a></p>
78
+
79
+ <p><?php echo get_the_date(); ?></p>
80
+
81
+ <p><?php the_category(", "); ?></p>
82
+
83
+ <p><?php the_content(); ?></p>
84
+
85
+ <?php if ( has_post_thumbnail() ) : ?>
86
+
87
+ <p><?php the_post_thumbnail(); ?></p>
88
+
89
+ <?php endif; ?>
90
+
91
+ <hr />
92
+
93
+ <?php endwhile; ?>
94
+
95
+ </div>
96
+
97
+ <?php endif; wp_reset_postdata(); ?>
98
+
99
+ コード
100
+
101
+ ```

1

追記修正

2020/08/28 02:40

投稿

sawaii
sawaii

スコア2

test CHANGED
File without changes
test CHANGED
@@ -23,3 +23,15 @@
23
23
  調べても一覧表示のやり方はたくさん出てきますが、全文を表示するやり方はなかなか出てきません。
24
24
 
25
25
  よろしくお願いいたします。
26
+
27
+
28
+
29
+ ### 追記
30
+
31
+ いただいたアドバイスから、固定ページに記事を表示するようにできればと思い、
32
+
33
+ 固定ページのGutenbergエディタで「ウィッジェット」→「custom post type latest posts 」を選択してみましたが「No posts found with the current block settings」と出てきてしまいます。
34
+
35
+ 記事は作成してますのであるはずなのですが。。
36
+
37
+ 引き続き調べます。