我有一些代码。试图添加ACF文件(数字)而不是静态数字
<?php $counter = 1; ?>
<?php $fff = the_field('show_ad_every_x_posts', 'option'); ?>
<?php if( $index_query->have_posts() ) : while( $index_query->have_posts() ) : $index_query->the_post(); ?>
<?php if($counter % $fff == 0 ): ?>
保存后会出现如下错误致命错误:Uncaught DivisionByZeroError: Modulo by 0
当我将<?php $fff = the_field('show_ad_every_x_posts', 'option'); ?>
改为<?php $fff = 7; ?>
时它工作得很好!
问题是,我试图显示广告后,每X的帖子。但是我认为我的代码会将post替换为ad。
这里是完整的代码
<?php $index_query = new WP_Query( array( 'post_type' => 'post', 'posts_per_page' => '13', 'order' => 'DESC' ) ); ?>
<?php $counter = 1; ?>
<?php $fff = the_field('show_ad_every_x_posts', 'option'); ?>
<?php if( $index_query->have_posts() ) : while( $index_query->have_posts() ) : $index_query->the_post(); ?>
<?php if($counter % 7 == 0 ): ?>
<div class="item">
<div class="meme-card-body">
<img src="<?php the_field('ads_masonry_banner', 'option'); ?>" class="img-home-posts">
</div>
</div>
<?php else : ?>
<div class="item">
<a href="<?php the_permalink(); ?>">
<div class="meme-card-body">
<?php if(has_post_thumbnail()): ?>
<img src="<?php the_post_thumbnail_url(); ?>" alt="<?php the_title(); ?>" class="img-home-posts">
<?php endif; ?>
<h1 class="meme-title"><?php the_title(); ?></h1>
</div>
</a>
</div>
<?php endif; ?>
<?php $counter++; endwhile; else : endif; ?>
那么如何解决这个问题呢?
<?php $fff = the_field('show_ad_every_x_posts', 'option'); ?>
the_field
直接显示值,没有返回值-所以您在这里为$fff
分配了"nothing"。
您想使用get_field
-一个返回的值。