How to make a meta box field a requirement
You can use Javascript to create a first-line convenience warning, but that is not a secure solution. You will need to interrupt the post save to truly create a required field. function req_meta_wpse_96762($data){ $allow_pending = false; if (isset($_POST[‘meta’])) { foreach ($_POST[‘meta’] as $v) { if (‘your_required_key’ === $v[‘key’] && !empty($v[‘value’])) { $allow_pending = true; } … Read more