我必须从php更新ACF Wysiwyg字段。我想将渲染的内容(从另一个Wysiwyg字段渲染)插入到该字段中。
update_field()
不适用于“所见即所得”字段。还有其他解决方案吗?
我无法更改字段类型。
答案 0 :(得分:0)
是的,您可以使用:
update_post_meta($ postid,'ACFfieldid',$ value);
或 update_field($ field_key,$ value,$ post_id);
答案 1 :(得分:0)
您需要使用html_entity_decode
对HTML进行解码。就是这样
update_post_meta($postid, 'key', html_entity_decode('HTML HERE'));