WordPress options page not saving
You need to pay attention to $page parameter, if its not same anywhere it will not work. <?php add_settings_field( $id, $title, $callback, $page, $section, $args ); ?> $page (string) (required) The menu page on which to display this field. Should match $menu_slug from add_theme_page() or from do_settings_sections(). https://codex.wordpress.org/Function_Reference/add_settings_field <?php add_settings_section( $id, $title, $callback, $page ); … Read more