投稿IDを設定して、投稿を表示にするコード書いたんですが機能しません、
サブループを使っています。
php
1<div class="panel is-show"> 2 <?php 3 $post= new WP_Query(array'post_type' => 'post', 4 'post__not_in' => array( 167, 77 ), 5 ) 6 ); 7 if(have_posts()): while(have_posts()):the_post(); 8 ?> 9 <div class="left-post-date"> 10 <?php echo get_the_date(); ?> 11 </div> 12 <div class="left-post-item"> 13 <?php the_category(); ?> 14 </div> 15 <a href="<?php the_permalink(); ?>" class="left-post-title"> 16 <?php the_title(); ?></a> 17 <?php endwhile; ?> 18 <?php endif; ?> 19 <?php wp_reset_postdata(); ?> 20</div>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/09/06 11:39
退会済みユーザー
2020/09/06 11:45
退会済みユーザー
2020/09/06 12:22