Converting Unix timestamp to wordpress date
You should use date_i18n(): $timestamp = get_post_meta($post_to_edit->ID, ‘_single_date’, true); $friendly_date = date_i18n( get_option(‘date_format’), $timestamp ); ?><input value=”<?= $friendly_date ?>” name=”_single_date” />