将单选按钮添加到高级自定义字段

时间:2016-01-08 15:29:55

标签: radio-button positioning advanced-custom-fields

我对ACF很陌生。我正在编辑此页面:http://pear.staging.wpengine.com/schizophrenia-semi-final/其中有一个用于介绍图像的ACF,另一个用于介绍文本。在模板中,这是代码:

<?php $bg1 = (get_field('pear_intro_image')) ? get_field('pear_intro_image') : ''; ?>
<section id="intro" class="section" style="background-image: url('<?=$bg1[sizes][large]?>');">
  <div class="container ">
    <div class="row">
      <div class="col-sm-8 col-sm-offset-2 text-center">
        <?= get_field('pear_intro_text') ?>
      </div>
    </div>
  </div>

风格&#34;背景图像&#34;将图像的位置设置为“居中中心”。客户希望删除该类,而是向ACF添加一个单选按钮,并选择将其对齐到顶部,中间或底部。

我不确定我会怎么做。有人能指出我正确的方向吗?

1 个答案:

答案 0 :(得分:0)

选择单选按钮作为字段。您将看到价值和标签。该值是执行<?php the_field()?>时传递的值。标签是WP中的人在进行选择时在管理区域中看到的内容。

所以,如果你有单选按钮:

左中:左 中心:中心 右中心:对

他们会看到&#34;左,中,右&#34;作为选择。 <?php the_field('background_position')?>将输出&#34;离开中心&#34;例如,如果他们选择了左派。