質問させて頂きます。
解決法がお分かりになる方いらっしゃいましたら、
ご教授お願い致します。
Wordpressで、個別ページに「ブログ一覧」で
「https://sample1.veronica9.com/blog/」というページを作成し、
投稿一覧を表示させたく、下記の設定を行いました。
Wordpressの「設定」
⇒「表示設定」
⇒「ホームページの表示」
⇒「固定ページ (以下で選択)」
⇒「投稿ページ」⇒「ブログ一覧」
https://sample1.veronica9.com/blog/
すると、投稿一覧の一番上に、必要のない「ブログ一覧」も表示されてしまいます。
これのみを消すには、どこを修正すればよいでしょうか?
CSSで消す以外で、解決法がお分かりになる方いらっしゃいましたら、
ご教授お願い致します。
「ブログ一覧」が出力されている
home.php
⇓
PHP
1<?php get_header(); ?> 2<div class="header-box"></div> 3<div class="container"> 4<div class="contents"> 5 <?php if(have_posts()): while(have_posts()): the_post(); ?> 6 <?php get_template_part('loop-content'); ?> 7 <?php endwhile; endif; ?><!--ループ終了--> 8 9 <div class="pagination"> 10 <?php echo paginate_links( array( 11 'type' => 'list', 12 'mid_size' => '1', 13 'prev_text' => '<i class="fas fa-angle-left"></i>', 14 'next_text' => '<i class="fas fa-angle-right"></i>' 15 ) ); ?> 16 </div> 17 18 19 </div><!--end contents--> 20 <?php get_sidebar(); ?> 21</div><!--end container--> 22<?php get_footer(); ?>
loop-content.php
⇓
PHP
1<article <?php post_class( 'article-list' ); ?>> 2 <a href="<?php the_permalink(); ?>"> 3 <div class="img-wrap"> 4 <!--画像を追加--> 5 <?php if( has_post_thumbnail() ): ?> 6 <?php the_post_thumbnail('medium'); ?> 7 <?php else: ?> 8 <img src="<?php echo get_template_directory_uri(); ?>/images/no-image.gif" alt="no-img"/> 9 <?php endif; ?> 10 <!--カテゴリ--> 11 <?php if (!is_category() && has_category()): ?> 12 <span class="cat-data"> 13 <?php 14 $postcat = get_the_category(); 15 echo $postcat[0]->name; 16 ?> 17 </span> 18 <?php endif; ?> 19 </div><!--end img-warp--> 20 <div class="text"> 21 <!--タイトル--> 22 <h2><?php the_title(); ?></h2> 23 24 <!--投稿日を表示--> 25 <span class="article-date"> 26<!-- <i class="far fa-clock"></i> --> 27 <time datetime="<?php echo get_the_date( 'Y-m-d' ); ?>"> 28 <?php echo get_the_date(); ?> 29 </time> 30 </span> 31 <!--著者を表示--> 32<!-- <span class="article-author"> 33 <i class="fas fa-user"></i><?php the_author(); ?> 34 </span> --> 35 <!--抜粋--> 36 <?php the_excerpt(); ?> 37 </div><!--end text--> 38 </a> 39</article> 40
どうぞよろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー