因此,我为主题设置设置了自定义帖子类型,并为此编辑了自定义字段以获取背景颜色。
脚本读取style.php样式,除非我试图获取字段值。
这是我正在努力工作的一段代码
html, body {background-color:<?php the_field('page_background_color');?>;}
查看来源时,背景颜色值只是空白。
答案 0 :(得分:0)
当您使用ACF选项页面时,您必须使用字符串“options”作为函数get_field()和the_field()的参数
尝试
html, body {background-color:<?php the_field('page_background_color', 'option' );?>;}