高级自定义字段内容不会在wordpress循环中显示

时间:2016-02-29 16:30:31

标签: wordpress wordpress-plugin custom-post-type

我在使用Wordpress循环显示acf内容时遇到了一些麻烦。 我在page.php模板中使用的代码如下:

  for (i = 0; i < lines.length; i++) {
    var items = lines[i].split(',');
    if (i == 0) {
      ctg[0] = items[0];
      ctg[1] = items[1];
    } else {
      dataYAxis.push([(new Date(items[0])).getTime(), parseFloat(items[1])]);
    }
  }

问题是两个字段:acf_test_box_header和acf_test_box_content在循环内部时不显示其内容,而是返回“标题2”和“内容2”。如果我将它们移出循环,那么它们会在输入正确时显示内容。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

试试这个:

$current_id = get_the_ID(); 
the_field( 'acf_test_box_content', $current_id );