wp_query用于高级自定义字段库

时间:2019-02-20 16:16:14

标签: php ajax advanced-custom-fields

我正在尝试创建更多加载按钮,以便使用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; ?>

1 个答案:

答案 0 :(得分:0)

您是否看过:https://www.advancedcustomfields.com/resources/query-posts-custom-fields/

基本上,您可以使用meta_query通过WP_Query查询ACF,并使用WordPress的paginate_links()方法来加载更多的AJAX。

希望有帮助。