Custom Meta Box: Value saved in WordPress DB, but not shown in input field on Edit Screen
You are building concatenating parts for your $html value but have <?php echo …?> there, and event it is never run, as it’s inside single quoted string. Fix your parts for input field like this $html .= ‘<div> … <input … value=”‘ . $current_preptime . ‘”> …’;