使用WordPress选项API显示设置选项

时间:2015-01-14 23:57:25

标签: php database wordpress setting

我在使用WordPresses设置API

进行保存时遇到问题

我有1个选项页面,包含1个部分和1个字段。所以它很直接。出现/呈现的所有内容都很好,但我无法保存字段。

class LocalSEOAdmin {

    var $slug = 'local_seo_settings';

    var $name = "Local SEO";

    public function __construct(){

        // When WP calls admin_menu, call $this->admin_settings
        if ( is_admin() ) {
            add_action('admin_menu',  array( &$this, 'add_options_page' ) );  // on admin_menu call $this->init_admin_menu
            add_action( 'admin_init', array( &$this, 'add_setting_fields' ) );

        }

    }

    public function add_options_page(){
        add_options_page( 
            $this->name, // Page title
            $this->name, // Menu Title
            'manage_options',  // Role
            $this->slug, // Menu slug
            array( &$this, 'local_seo_admin_menu_callback' ) // Callback to render the option page
        );
    }

    public function local_seo_admin_menu_callback(){ 
        ?>
        <div class='wrap'>
        <h1><?php echo $this->name ?> Options</h1>
        <form method='post' action='options.php'>
        <?php
            settings_fields( 'address_settings_section' );
            do_settings_sections( $this->slug );
            submit_button();    
        ?>
        </form>
        </div>
        <?php

    } 

    public function add_setting_fields(){

        add_settings_section(
            'address_settings_section',         // ID used to identify this section and with which to register options
            'Address Options',      // Title to be displayed on the administration page
            array( &$this, '_render_address_options'),  // Callback used to render the description of the section
            $this->slug     // Page on which to add this section of options
        );

        add_settings_field( 
            'address_line_1',                       // ID used to identify the field throughout the theme
            'Address Line 1',                           // The label to the left of the option interface element
            array( &$this, '_render_address_line_1'),   // The name of the function responsible for rendering the option interface
            $this->slug,    // The page on which this option will be displayed
            'address_settings_section',         // The name of the section to which this field belongs
            array(                              // The array of arguments to pass to the callback. In this case, just a description.
                __( 'Activate this setting to display the header.', 'sandbox' ),
            )
        );

        register_setting(
            'address_settings_section',
            'address_settings_section'
        );

    }

    public function _render_address_options(){
        echo '<p>Add you address</p>';
    }

    public function _render_address_line_1(){
        $option = get_option( 'address_line_1' );
        $html = '<input type="text" id="address_line_1" name="address_line_1" value="' . $option . '" />'; 
        echo $html;
    }


}

new LocalSEOAdmin;

我不确定发生了什么,但我觉得我已经将所需的字段混淆了。字段显示在WordPress中,当我点击更新时,&#34;设置已保存。&#34;消息出现,但没有任何东西得到保存。

2 个答案:

答案 0 :(得分:0)

注册设置时会出现一些问题。

基于register_setting,第二个参数是$ option_name,因此您必须输入您输入的发送名称

    register_setting(
        'address_settings_section',
        'address_line_1'
    );

现在已经奏效了。

您可以在wordpress site中找到有关创建选项页面的更多信息。

答案 1 :(得分:0)

register_setting()

第一个参数是您的option group name&amp;
第二个参数是option name,在add_settings_field()中给出,在您的情况下应该是address_line_1而不是address_settings_section

最后

register_setting(
                'address_settings_section',
                'address_line_1'
                )