在锅炉板插件结构中调用未定义的函数settings_fields()

时间:2017-05-12 05:29:32

标签: php wordpress boilerplate

我在锅炉板结构的基础上创建插件,我正在尝试创建管理菜单页面,但我收到一个错误。 以下是我的代码。

在admin-hook中的class-plugin-name.php中的代码下面,

$this->loader->add_action( 'admin_menu', $plugin_admin, 'define_admin_page' );
$this->loader->add_action( 'admin_init', $plugin_admin, 'register_setting' );

在class-plugin-name-admin.php中,

public function define_admin_page(){

        add_menu_page(
          __('SEO Boost', 'seo-boost'), 
          __('SEO Boost', 'seo-boost'), 
          'manage_options', 
          'seo-boost', 
          array(&$this, 'seo_boost_page_callback')
        );        
    }

    public function seo_boost_page_callback(){
        include_once 'partials/plugin-name-admin-display.php';
    }

    public function register_setting(){
        add_settings_section(
               $this->option_name.'_general-section',
               __( 'General', 'seo-boost' ), 
               array( $this, $this->option_name . '_general_line' ), 
               $this->plugin_name
               );

    add_settings_field(
           $this->option_name . '_text', 
           __("Text box label:", 'seo-boost'), 
           array( $this, $this->option_name . '_text_api_element' ),    
          $this->plugin_name, 
          $this->option_name.'general-section',
          array( 'label_for' => $this->option_name . '_text' )
          );

    register_setting($this->option_name.'general-section', $this->option_name . '_text');           

    }

    public function seo_boost_general_line(){
        echo '<p>' . __( 'Please change the settings accordingly.', 'outdated-notice' ) . '</p>';
    }

    public function seo_boost_text_api_element(){
        $text = get_option( $this->option_name . '_text' );
        echo '<input type="text" name="' . $this->option_name . '_text' . '" id="' . $this->option_name . '_text' . '" value="' . $text . '"> ' . __( 'text', 'seo-boost' );
    }

在plugin-name-admin-display.php里面有显示管理页面表单字段的代码,

<div class="wrap">
            <h1><?php _e('Seo Settings', 'seo-boost'); ?></h1>
             <form action="options.php" method="post">
        <?php       
        settings_fields($this->option_name.'_general-section');
        do_settings_sections($this->plugin_name);
        submit_button(); ?>             
            </form>
        </div>

但是我收到致命错误的错误:

在第20行的plugin-name-admin-display.php中调用未定义的函数settings_fields()

我正在使用此链接中的ref来创建插件。 REf. plugin

1 个答案:

答案 0 :(得分:0)

令人难以置信的是,您必须在括号之间添加一个空格才能使调用生效。因此,代替:

settings_fields($this->option_name.'_general-section');

您应该将其编码为:

settings_fields( $this->option_name.'_general-section' );