ワードプレスで下記の投稿が0件の場合に、
sectionごと非表示する記述が知りたいです。
ご教授お願いいたします。
php
1 2 3<section class="voice-list"> 4 5<h3>お客様の声<span>VOICE</span></h3> 6<?php 7$args = array( 8'category_name' => 'other', 9'posts_per_page' => 3, 10'post_type' =>'post', 11); 12$the_query = new WP_Query($args); 13if($the_query->have_posts()):?> 14<?php while($the_query->have_posts()) : $the_query->the_post(); ?> 15<?php if( have_rows('cf-waterleak-05')){ ?> 16<?php while( have_rows('cf-waterleak-05') ): the_row();?> 17 <span class="voice-list-item"> 18<?php if(get_sub_field('cf-waterleak-05-ttl')){ ?><h3 class="voice_h3"><?php the_sub_field('cf-waterleak-05-ttl'); ?></h3><?php } ?> 19<div class="flex img_left"> 20<?php $image5 = wp_get_attachment_image_src(get_sub_field('cf-waterleak-05-pic'), 'size_300');?> 21<?php if(get_sub_field('cf-waterleak-05-pic')){ ?><figure><img src="<?php echo $image5[0]; ?>" alt="<?php the_sub_field('cf-waterleak-05-ttl');?>"></figure><?php } ?> 22<?php if(get_sub_field('cf-waterleak-05-txt')){ ?><p><?php the_sub_field('cf-waterleak-05-txt'); ?></p><?php } ?> 23</div> 24</span> 25<?php endwhile; ?> 26<?php }; ?> 27 28<?php endwhile; ?> 29<?php else: ?> 30<!--<p class="post_none">情報が整い次第、掲載致しますので、お待ち下さい。</p>--> 31<?php endif; ?> 32<?php wp_reset_postdata(); ?> 33</section> 34 35 36 37
あなたの回答
tips
プレビュー