WordPress 中的高级自定义字段复选框

advanced custom fields checkbox in WordPress

我在 WordPress 中为我的自定义 post 类型之一使用高级自定义字段复选框功能。我在复选框中有两项。

我只想打印从 WordPress 管理面板中选择的正确选项。归档名称是 auth-trans

我在我的代码中调用它,但它显示 array,而不是正确的。这是我的一些代码。

<div class="col-md-11 col-sm-11 col-xs-12">
    <?php $args = array( 'post_type' => 'Author', 'posts_per_page' => 5 ); 
    $loop = new WP_Query( $args );
    while ( $loop->have_posts() ) : $loop->the_post(); ?>
    <a class="writer-link col-md-12 col-sm-12 col-xs-12" href="<?php post_permalink(); ?>">
        <div class="writer-row1 col-md-12 col-sm-12 col-xs-12">
                <div class="col-md-2 col-sm-3 col-xs-12 image-right">
                    <?php the_post_thumbnail(array('class' => 'img-responsive')); ?>
                </div>
                <div class="col-md-10 col-xs-12 col-sm-9 col-xs-12 pull-right writer-content">
                    <h3><?php the_title(); ?></h3>
                    <?php if ( get_field('auth-trans') ) { 
                        echo '<h4>'.get_field('auth-trans').'</h4>';} ?>    
                    <?php if ( get_field('writer-bio') ) { 
                        echo '<p>'.get_field('writer-bio').'</p>';} ?>

                    <span>...</span>
                </div>
        </div>
    </a>

    <?php endwhile; // End of the loop. ?>          

</div>

我该如何解决,我的问题出在哪里?

试一试。

<?php the_field('auth-trans'); ?>

如果您遇到任何问题,请告诉我。

如果您想回显该字段,请替换

get_field('auth-trans')

get_field('auth-trans')[0]

或者你也可以使用

the_field('auth-trans');