ID ); wp_nonce_field( 'appuccino_meta_box_body_template_nonce', 'meta_box_nonce' ); require dirname(__DIR__) . '/view/meta_box/body-template.php'; } function appuccino_meta_box_body_template_save( $post_id ) { if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } if( !isset( $_POST['meta_box_nonce'] ) || !wp_verify_nonce( $_POST['meta_box_nonce'], 'appuccino_meta_box_body_template_nonce' ) ) { return; } if( !current_user_can( 'edit_post' ) ) { return; } if( isset( $_POST['appuccino_meta_box_body_template_value'] ) ) { update_post_meta( $post_id, 'appuccino_meta_box_body_template_value', sanitize_text_field($_POST['appuccino_meta_box_body_template_value'] )); } } add_action( 'save_post', 'appuccino_meta_box_body_template_save' );