如何在OptionTree中拥有多个“主题选项”页面?

时间:2013-08-24 04:08:27

标签: php wordpress-plugin wordpress custom-wordpress-pages

OptionTreeGitHub)可以非常简单地为主题创建“主题选项”页面。

我如何扩展OptionTree以便为我的插件创建“ 插件选项”页面?

谢谢!

1 个答案:

答案 0 :(得分:9)

实际上非常简单。以下代码将在名为测试页的设置页面下创建一个页面。这就是OptionTree创建自己的页面的方式。

/**
 * Hook to register admin pages 
 */
add_action( 'init', 'register_options_pages' );

/**
 * Registers all the required admin pages.
 */
function register_options_pages() {

  // Only execute in admin & if OT is installed
  if ( is_admin() && function_exists( 'ot_register_settings' ) ) {

    // Register the pages
    ot_register_settings( 
      array(
        array( 
          'id'              => 'custom_options',
          'pages'           => array(
            array(
              'id'              => 'test_page',
              'parent_slug'     => 'options-general.php',
              'page_title'      => 'Test Page',
              'menu_title'      => 'Test Page',
              'capability'      => 'edit_theme_options',
              'menu_slug'       => 'test-page',
              'icon_url'        => null,
              'position'        => null,
              'updated_message' => 'Test Page updated.',
              'reset_message'   => 'Test Page reset.',
              'button_text'     => 'Save Changes',
              'show_buttons'    => true,
              'screen_icon'     => 'options-general',
              'contextual_help' => null,
              'sections'        => array(
                array(
                  'id'          => 'test_section',
                  'title'       => __( 'Test Section', 'motif-core' )
                )
              ),
              'settings'        => array(
                array(
                  'id'          => 'test_section_input',
                  'label'       => 'Test Input',
                  'desc'        => 'Pretty freaking awesome!',
                  'std'         => '',
                  'type'        => 'text',
                  'section'     => 'test_section',
                  'class'       => ''
                )
              )
            )
          )
        )
      )
    );

  }

}