Quindi, usando $ wpdb-> update per aggiungere alcuni dati a una tabella personalizzata, provando ad aggiungere il timestamp corrente ma non sta salvando le cose giuste (è stata salvata la registrazione 00:00:00).
codice generale
$wpdb->update('mytable',
array(
'value' => 'hello world',
'edit' => date("Y-m-d h:i:s") //saves 0000-00-00 00:00:00
),
array(
'option_name' => 'the row'
),
array('%s, %s')
);
time()
restituisce un numero intero, non una stringa.
date( "Y-m-d h:i:s", time() );
edit
NON NULLA DEFAULT '0000-00-00 00:00:00')
date( "Y-m-d h:i:s", strtotime( time() );