我正在尝试创建更多加载按钮,以便使用AJAX从我的ACF库中加载更多图像。但是要做到这一点,我需要能够使用wp_query,以便可以设置每页的帖子数量。那么可以将以下代码转换为wp_query吗?
<?php
$images = get_field('images');
if( $images ): ?>
<?php foreach( $images as $image ): ?>
<div class="col-4 p-0">
<a href="<?php echo $image['url']; ?>">
<img src="<?php echo $image['sizes']['gallery_size']; ?>" alt="<?php echo $image['alt']; ?>" />
</a>
</div>
<?php endforeach; ?>
<?php endif; ?>
答案 0 :(得分:0)
您是否看过:https://www.advancedcustomfields.com/resources/query-posts-custom-fields/
基本上,您可以使用meta_query
通过WP_Query
查询ACF,并使用WordPress的paginate_links()
方法来加载更多的AJAX。
希望有帮助。