I don’t entirely understanding how to save my plugin’s settings properly. When I click on the “Save Changes” button it saves data but it does not show any successful like message. Do I need to add an extra function or something else?
My form look like this:
function bdthemes_core_settings_page() { ?>
<div class="wrap">
<h1>BdThemes Settings</h1>
<form method="post" action="options.php">
<?php
settings_fields("section");
do_settings_sections("plugin-options");
submit_button();
?>
</form>
</div>
<?php
}