我用php endif得到错误,找不到错误。我在这里给了我的代码。请帮我解决这个问题
<?php if( have_rows('home-video-slider') ): ?>
<?php while( have_rows('home-video-slider') ): the_row();
$video_banner = get_sub_field('video-banner');
?>
<div class="item">
<div class="fm-video-banner">
<?php if( $video_banner ); ?>
<img src="<?php echo $video_banner['url']; ?>"/>
<?php endif; ?>
<a class="popup-youtube fm-play-icon"
href="https://www.youtube.com/embed/5ktgB9hlETw">
<span>
<i class="fa fa-play" aria-hidden="true"></i>
</span>
</a>
</div>
</div>
<?php $p++; endwhile; ?>
<?php endif; ?>
答案 0 :(得分:4)
那里的语法错误:
<?php if( $video_banner ); ?>
由
取代<?php if( $video_banner ): ?>
在if的条件写入后写;
<?php
if( $video_banner )
{
; //Do nothing
}
?>
这意味着你有一个endif;
超过