php ACF灵活布局字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php ACF灵活布局字段相关的知识,希望对你有一定的参考价值。

<?php

// check if the flexible content field has rows of data
if( have_rows('flexible_content_field_name') ):

 	// loop through the rows of data
    while ( have_rows('flexible_content_field_name') ) : the_row();

		// check current row layout
        if( get_row_layout() == 'gallery' ):

        	// check if the nested repeater field has rows of data
        	if( have_rows('images') ):

			 	echo '<ul>';

			 	// loop through the rows of data
			    while ( have_rows('images') ) : the_row();

					$image = get_sub_field('image');

					echo '<li><img src="' . $image['url'] . '" alt="' . $image['alt'] . '" /></li>';

				endwhile;

				echo '</ul>';

			endif;

        endif;

    endwhile;

else :

    // no layouts found

endif;

?>
<?php if( have_rows('flexible_content_field_name') ): ?>

<?php while ( have_rows('flexible_content_field_name') ) : the_row(); ?>
 
        <?php if( get_row_layout() == 'paragraph' ): ?>
 
        	<?php the_sub_field('text'); ?>
 
        <?php elseif( get_row_layout() == 'download' ):  ?>
 
        	<?php $file = get_sub_field('file'); ?>
 
        <?php endif; ?>
 
    <?php endwhile; ?>
 
<?php else : ?>
 
    <?php // no layouts found ?>
 
<?php endif; ?>

以上是关于php ACF灵活布局字段的主要内容,如果未能解决你的问题,请参考以下文章

php 具有acf转发器子字段的facetwp布局构建器

输出表中的 ACF 灵活内容字段(表头不通过循环重复)

php ACF灵活内容

php ACF灵活的内容

php Acf Pro&Sage 9 - 灵活的内容块

php WordPress:在ACF字段中搜索,functions.php