Support

Account

Home Forums ACF PRO Widget instance title as a custom field Reply To: Widget instance title as a custom field

  • Hi @vasili

    In the update function in your custom widget class, I believe you can get the posted data by using the $_POST variable like this:

    $instance['title'] = $_POST['acf']['field_123456789abc'];

    Where ‘field_123456789abc’ is the field key.

    Hope this helps 🙂