Hide individual page title using checkbox in custom meta box?
$value is always empty because post ID is missing. Pass the parameter ($post object) to the hide_title_callback() function and get the post ID right way. Also, you should take care of nonces. <?php // pass the $post object function hide_title_callback( $post ) { // you have to verify this nonce inside `mysite_save_postdata()` // https://codex.wordpress.org/Function_Reference/wp_nonce_field wp_nonce_field( … Read more