首页 文章

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

提问于
浏览
1

我在WordPress中使用高级自定义字段复选框功能,用于我的自定义帖子类型之一 . 我在复选框中有两个项目 .

  • 作家

  • 批评者

我只想打印从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>

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

2 回答

  • 0

    尝试这样的 .

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

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

  • 1

    如果你想回显该字段然后替换

    get_field('auth-trans')
    

    get_field('auth-trans')[0]
    

    或者你也可以使用

    the_field('auth-trans');
    

相关问题