• Hi there!

    I’m trying to make my first WP plugin, but I’m having trouble making the message “Settings saved” appear, can anyone help me?

    (The data is being saved)

    here’s the code:

    `<?php
    /*
    Plugin Name: .Plugin Teste
    Plugin URI: http://www.veja.com
    Description: Teste
    Author: Andre Fuentes
    Version: 1.0
    Author URI: http://www.veja.com
    */

    ?>

    <?php
    // create custom plugin settings menu
    add_action(‘admin_menu’, ‘baw_create_menu’);
    add_action(‘init’,’print_values’);
    ?>

    <?php function print_values() { ?>
    <div style=”background-color:#000;color:#fff;”>
    <?php echo get_option(‘new_option_name’);?>
    </div>
    <?php } ?>

    <?php
    function baw_create_menu() {

    //create new top-level menu
    add_menu_page(‘BAW Plugin Settings’, ‘BAW Settings’, ‘administrator’, __FILE__, ‘baw_settings_page’,”, 0);
    add_submenu_page( __FILE__, ‘Page title’, ‘Sub-menu title’, ‘manage_options’, ‘my-submenu-handle’, ‘my_magic_function’);

    //call register settings function
    add_action( ‘admin_init’, ‘register_mysettings’ );
    }

    function register_mysettings() {
    //register our settings
    register_setting( ‘baw-settings-group’, ‘new_option_name’ );
    register_setting( ‘baw-settings-group’, ‘some_other_option’ );
    register_setting( ‘baw-settings-group’, ‘option_etc’ );
    }

    function baw_settings_page() {
    ?>
    <div class=”wrap”>
    <h2>Your Plugin Name</h2>

    <form method=”post” action=”options.php”>
    <?php settings_fields( ‘baw-settings-group’ ); ?>
    <table class=”form-table”>
    <tr valign=”top”>
    <th scope=”row”>New Option Name</th>
    <td><input type=”text” name=”new_option_name” value=”<?php echo get_option(‘new_option_name’); ?>” /></td>
    </tr>

    <tr valign=”top”>
    <th scope=”row”>Some Other Option</th>
    <td><input type=”text” name=”some_other_option” value=”<?php echo get_option(‘some_other_option’); ?>” /></td>
    </tr>

    <tr valign=”top”>
    <th scope=”row”>Options, Etc.</th>
    <td><input type=”text” name=”option_etc” value=”<?php echo get_option(‘option_etc’); ?>” /></td>
    </tr>
    </table>

    <p class=”submit”>
    <input type=”submit” class=”button-primary” value=”<?php _e(‘Save Changes’) ?>” />
    </p>

    </form>
    </div>
    <?php } ?>`

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Plugin not showing “Settings saved” message =(’ is closed to new replies.