Support

Account

Home Forums Backend Issues (wp-admin) Automatically create a post using Custom field WYSIWYG on Page. Reply To: Automatically create a post using Custom field WYSIWYG on Page.

  • Hi @carxofa

    I believe you can use acf_form() to do it. This page should give you more idea about it: https://www.advancedcustomfields.com/resources/using-acf_form-to-create-a-new-post/.

    You can also use the acf/save_post hook to change the post content based on the WYSIWYG field by using the wp_update_post() function. But if you use ACF Pro, you can simply use the “post_content” option.

    I hope this helps.