Support

Account

Home Forums ACF PRO 'A title, maybe a $_POST variable' how to? Reply To: 'A title, maybe a $_POST variable' how to?

  • Hi @Dmitry Averin

    To concatinate strings, you do so like this:
    $string = 'foo' . 'bar';

    So ACF $_POST data would look like:
    'post_title' => $_POST['acf']['field_5481ab2cdda13'] . ' ' . $_POST['acf']['field_5481ab2cdda14'],

    Hope that helps