起きていること
ホームページにコラム記事を作成する機能を作っており、
以下のファイル構成で、『記事一覧』 『カテゴリー別の記事一覧』 『個別記事ページ』を作成しております。
| 内容 | ファイル名 | リンク |
| ---- | ---- |
| コラム記事一覧 | page-column.php | /column/ |
| カテゴリー記事一覧 | category.php | /column/%category%/ |
| 個別記事 | single.php | /column/%category%/%post_id%/ |
『記事一覧』 『カテゴリー別の記事一覧』 から、任意の『個別記事』にリンクしたいので、
個別記事へのリンク部分に<a class="article" href="<?php the_permalink(); ?>">
を記述しております。
すると、リンクは 『/column/サンプルカテゴリ①/76/』 のような形で正常に読み込んでいるのですが、肝心のsingle.php
が読み込まれずエラーが起きます。
クエリを調査すると**category_nameとしてcategory,post_id 共に送られているので、これが原因だと思われますが、
同様の事例を他に見つけることができず、解決策が分かっていません。**
原因及び解決策についてご教示いただけないでしょうか?
コード
php
1<!-- page-column.phpの記述 --> 2<?php 3 $paged = (int) get_query_var('paged'); 4 $args = array( 5 'posts_per_page' => 8, 6 'paged' => $paged, 7 'orderby' => 'post_date', 8 'order' => 'DESC', 9 'post_type' => 'post', 10 'post_status' => 'publish' 11 ); 12 $the_query = new WP_Query($args); 13 if ( $the_query->have_posts() ) : 14 while ( $the_query->have_posts() ) : $the_query->the_post(); 15?> 16 <article> 17 <a class="article" href="<?php the_permalink(); ?>"> 18 <div class="article__image"> 19 <div class="article__image--flg"></div> 20 <?php 21 if(has_post_thumbnail()){ 22 the_post_thumbnail( 'array()', array('class' => 'article__image--data')); 23 }else{ 24 echo '<img src="' . esc_url(get_template_directory_uri()) . '/img/no-image.jpeg" alt="no-image" class="article__image">'; 25 } 26 ?> 27 </div> 28 <div class="article__content"> 29 <p class="article__content--time"><?php the_time('Y.m.d'); ?></p> 30 <h3 class="article__content--title"><?php the_title(); ?></h3> 31 <p class="article__content--sentence"><?php echo mb_substr( get_the_excerpt(), 0, 100 ) . '...'; ?></p> 32 <div class="article__content--more"> 33 <p>more</p> 34 </div> 35 </div> 36 </a> 37 </article> 38 <?php endwhile; endif; ?>
php
1<!-- category.phpの記述 --> 2 3<?php 4$paged = (int) get_query_var('paged'); 5$current_category = single_cat_title("", false); 6$args = array( 7 'posts_per_page' => 8, 8 'paged' => $paged, 9 'orderby' => 'post_date', 10 'category_name' => $current_category, 11 'order' => 'DESC', 12 'post_type' => 'post', 13 'post_status' => 'publish' 14); 15$the_query = new WP_Query( $args ); 16if ( $the_query->have_posts() ) : 17 while ( $the_query->have_posts() ) : $the_query->the_post(); 18?> 19<article> 20 <a class="article" href="<?php the_permalink(); ?>"> 21 <div class="article__image"> 22 <div class="article__image--flg"></div> 23 <?php 24 if(has_post_thumbnail()){ 25 the_post_thumbnail( 'array()', array('class' => 'article__image--data')); 26 }else{ 27 echo '<img src="' . esc_url(get_template_directory_uri()) . '/img/no-image.jpeg" alt="no-image" class="article__image">'; 28 } 29 ?> 30 </div> 31 <div class="article__content"> 32 <p class="article__content--time"><?php the_time('Y.m.d'); ?></p> 33 <h3 class="article__content--title"><?php the_title(); ?></h3> 34 <p class="article__content--sentence"><?php echo mb_substr( get_the_excerpt(), 0, 100 ) . '...'; ?></p> 35 <div class="article__content--more"> 36 <p>more</p> 37 </div> 38 </div> 39 </a> 40</article> 41<?php endwhile; endif; ?> 42
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/07 05:06 編集
2021/01/07 05:11
2021/01/07 06:18
2021/01/07 07:24
2021/01/07 07:37
2021/01/07 10:31