RW Meta Box ,Problem setting post title
Here’s a solution that take’s advantage of Rilwis’ action hook… so you can profit from his nonce checking without needing to add your own. add_action(‘rwmb_after_save_post’, ‘post_updated’); function post_updated($post_id) { // verify post is not a revision & not an autosave if (!wp_is_post_revision($post_id) && !(defined(‘DOING_AUTOSAVE’) && DOING_AUTOSAVE)) { global $prefix; $prefix . ‘name’; // check that … Read more