以下のコードを用いて出力しています
front-page.php
php
1 <?php 2 3 <?php 4 $paged = (get_query_var('page')) ? get_query_var('page') : 1; 5 $the_query = new WP_Query( array( 6 'post_status' => 'publish', 7 'post_type' => 'post', 8 'paged' => $paged, 9 'posts_per_page' => 10, 10 'orderby' => 'date', 11 'order' => 'DESC' 12 ) ); 13 if ($the_query->have_posts()) : 14 while ($the_query->have_posts()) : $the_query->the_post(); 15 ?> 16 17 <article class="article"> 18 <figure class="article__img" 19 style="background-image: url(<?php the_post_thumbnail_url(350.223); ?>);"> 20 </figure> 21 <div class="article__box"> 22 <div class="article__box__flex"> 23 <?php the_tags( '<ul><li>', '</li><li>', '</li></ul>' ); ?> 24 <time><?php the_time('Y.n.j'); ?></time> 25 </div> 26 <h3 class="article__box__title"><a href="<?php the_permalink(); ?>"> 27 <?php 28 if(mb_strlen($post->post_title, 'UTF-8')>49){ 29 $title= mb_substr($post->post_title, 0, 49, 'UTF-8'); 30 echo $title.'……'; 31 }else{ 32 echo $post->post_title; 33 } 34 ?> 35 </h3> 36 </div> 37 38 </article> 39 <?php 40 endwhile; 41 else: 42 echo '<div><p>ありません。</p></div>'; 43 endif; 44 ?> 45
出力された31個目の投稿記事(最新記事)
php
1<article class="article"> 2 <figure class="article__img" style="background-image: url(http://panda.local/wp-content/uploads/grey1.png);"> 3 </figure> 4 <div class="article__box"> 5 <div class="article__box__flex"> 6 <ul> 7 <li><a href="http://panda.local/tag/tag5/" rel="tag">タグの名前5</a></li> 8 <li><a href="http://panda.local/tag/tag6/" rel="tag">タグの名前6</a></li> 9 </ul> <time>2021.1.15</time> 10 </div> 11 <h3 class="article__box__title"><a href="http://panda.local/title31/"> 12 31記事タイトル記事タイトル記事タイトル記事タイトル記事タイトル記事タイトル記事タイトル記事タイト…… </a></h3><a href="http://panda.local/title31/"> 13 </a> 14 </div><a href="http://panda.local/title31/"> 15 16 </a> 17</article>
出力された30個目の投稿記事
php
1<article class="article"><a href="http://panda.local/title31/"> 2 <figure class="article__img" style="background-image: url(http://panda.local/wp-content/uploads/grey1.png);"> 3 </figure> 4 </a> 5 <div class="article__box"><a href="http://panda.local/title31/"> 6 </a> 7 <div class="article__box__flex"><a href="http://panda.local/title31/"> 8 </a> 9 <ul><a href="http://panda.local/title31/"></a> 10 <li><a href="http://panda.local/title31/"></a><a href="http://panda.local/tag/tag3/" 11 rel="tag">タグの名前3</a></li> 12 <li><a href="http://panda.local/tag/tag4/" rel="tag">タグの名前4</a></li> 13 </ul> <time>2021.1.15</time> 14 </div> 15 <h3 class="article__box__title"><a href="http://panda.local/title30/"> 16 30記事タイトル記事タイトル記事タイトル記事タイトル記事タイトル記事タイトル記事タイトル記事タイト…… </a></h3><a href="http://panda.local/title30/"> 17 </a> 18 </div><a href="http://panda.local/title30/"> 19 20 </a> 21</article>
出力された29個目の投稿記事
php
1 2<article class="article"> 3 <a href="http://panda.local/title30/"> 4 <figure class="article__img" style="background-image: url(http://panda.local/wp-content/uploads/grey1.png);"> 5 </figure> 6 </a> 7 <div class="article__box"> 8 <a href="http://panda.local/title30/"></a> 9 <div class="article__box__flex"><a href="http://panda.local/title30/"> 10 </a> 11 <ul><a href="http://panda.local/title30/"></a> 12 <li><a href="http://panda.local/title30/"></a><a href="http://panda.local/tag/tag1/" 13 rel="tag">タグの名前1</a></li> 14 <li><a href="http://panda.local/tag/tag2/" rel="tag">タグの名前2</a></li> 15 </ul> <time>2021.1.15</time> 16 </div> 17 <h3 class="article__box__title"><a href="http://panda.local/title29/"> 18 29記事タイトル記事タイトル記事タイトル記事タイトル記事タイトル記事タイトル記事タイトル記事タイト…… </a></h3><a href="http://panda.local/title29/"> 19 </a> 20 </div><a href="http://panda.local/title29/"> 21 22 </a> 23</article> 24
最新の記事はちゃんと出力されているのですが
それ以外は1個前の記事のリンクが入ったaタグ↓が
html
1<a href="http://panda.local/title30/"></a>
あらゆる所に出力されて困っています。
見た目にも影響が出ているため出力した結果を最新記事のように統一したいです。
原因が分かる方いましたら可能性でも構いませんので教えていただきたいです。
よろしくおねがいします。
回答1件
あなたの回答
tips
プレビュー