我该怎么做才能将 ACF 添加textarea
到 Genesis 子主题模板中。
我尝试了很多,但没有找到任何方法。
谢谢你。
我该怎么做才能将 ACF 添加textarea
到 Genesis 子主题模板中。
我尝试了很多,但没有找到任何方法。
谢谢你。
首先,您必须弄清楚要放置字段的位置。您可以使用其中一个 genesis 挂钩(请参见此处),也可以直接修改主题字段,在这种情况下,您可以将代码粘贴到任何您想要的位置。
例如,如果你正在使用一个钩子并且你想把它放在你的标题中,你可以这样做:
add_action('genesis_header', 'add_content_to_header');
function add_content_to_header() {
echo get_field('my_textarea_field');';
}
或者直接把它放到一个子主题模板文件中,只要把它放在任何你想要的地方:
the_field('my_textarea_field');';