ACF灵活内容字段

时间:2017-12-18 15:42:54

标签: wordpress advanced-custom-fields

我设置了许多灵活的内容字段。

其中一种称为“产品选择器”,另一种称为“产品信息”。

产品选择器使用post对象功能来提取所选产品。

我可以输入默认的wordpress部分,例如:

<?php the_post_thumbnail(); ?>

但我不能在“产品信息”中提取价值。

这实际上可行吗?以下代码摘录:

<?php if( have_rows('content_blocks') ):

    while ( have_rows('content_blocks') ) : the_row();

        if( get_row_layout() == 'product_information' ):

            include("inc/product-information.php");     

        elseif( get_row_layout() == 'products_picker' ):

            include("inc/products-picker.php");

        endif;

    endwhile;

endif; ?>

然后在'products-picker'中我使用以下代码:

<?php foreach( $post_objects as $post):  ?>

    <?php setup_postdata($post); ?>

        <div class="product">   

            <?php the_post_thumbnail(); ?>      

            <div class="description">

                    /* Echoing post ID returns correct value */
                    <h1><?php echo $post->ID; ?></h1>

                    /* Does not work */
                    <h1><?php the_sub_field('heading', $post->ID); ?></h1>

                    /* Does not work */
                    <?php the_sub_field('description', $post->ID); ?>

            </div> <!-- .description -->

        </div> <!-- .product-->

<?php endforeach; ?>

<?php wp_reset_postdata(); ?>

我的内容结构可能不对。

也许您无法在灵活内容中调用灵活内容?

但我认为应该可以根据默认字段这样做:

the_post_thumbnail(); 

the_title();

的工作。

非常感谢您的所有时间和帮助。

1 个答案:

答案 0 :(得分:1)

您必须为每个帖子对象设置灵活的行部分。因此,在设置发布数据后,请复制

if( have_rows('content_blocks') ):
    while ( have_rows('content_blocks') ) : the_row();

包含每个帖子对象的产品信息字段。

查看https://www.advancedcustomfields.com/resources/flexible-content/和嵌套循环示例。我认为这应该让你更近一点。