我无法将acf_add_options_sub_page()字段加载到Timber上下文中。
在我的functions.php中,我有......
td
在我的template-home.php文件中,我有
$ context ['national_sponsors'] = get_field('national_sponsors','options');
根据http://timber.github.io/timber/#acf-cookbook
但是如果我执行print_r($ context),则national_sponsors为空,它甚至不包含对象 - 只是空白。
字段填充在选项页面
中您可以提供的任何建议将不胜感激!谢谢!
答案 0 :(得分:0)
不是national_sponsors选项页面的slug?你不应该使用自定义字段slugs吗?
$sponsors['facebook'] = get_field('facebook','option');
或者您是否希望从群组中获取所有字段?
acf_get_fields(id);
id是字段组的id。