Wordpress全局变量,我可以在管理面板中编辑

时间:2015-08-11 11:11:06

标签: php wordpress

我有一个关于WP全局变量的问题。我在我的header.php文件中实现了if函数。这是一个非常简单的函数,需要检查变量值并显示正确的数据,具体取决于值。

这是函数:

<?php

if ($spon == 0)
{
echo 'number 0';
}
    elseif ($spon == 1)
{
    echo 'number 2';
}
else
{
    echo 'number 3';
}
?>

此功能可以满足我的需求,但现在我想创建全局变量,我可以在管理面板中更改它的值。这可能吗?怎么样?

1 个答案:

答案 0 :(得分:0)

我会向你推荐Options Framework

如果你仍然想自己做,这里有一个很长的描述。

https://codex.wordpress.org/Creating_Options_Pages

在这个Wordpress-Codex页面上是你需要的一切,你应该尝试一下 - 如果你还有任何问题,可以再问一遍。

但是作为总结,这些是你必须要做的步骤:

  • 创建/注册选项页面,例如add_options_page()add_menu_page() ...
  • 注册设置(添加您需要的字段)
  • 清理并保存用户输入

另一方面,您可以通过以下方式获取已保存的选项(检查您是否已将其保存...)

<?php echo get_option( $option, $default ); ?> 

e.g。

<?php echo get_option( 'blogname' ); ?>
<?php echo get_option( 'myOption' ); ?>

实际上并不那么难......但Options-Framework会更容易。

http://wptheming.com/options-framework-theme/

以下是法典中的 ready-to-go-but-understand-it-before-you-use-it 代码:

<?php
class MySettingsPage
{
    /**
     * Holds the values to be used in the fields callbacks
     */
    private $options;

    /**
     * Start up
     */
    public function __construct()
    {
        add_action( 'admin_menu', array( $this, 'add_plugin_page' ) );
        add_action( 'admin_init', array( $this, 'page_init' ) );
    }

    /**
     * Add options page
     */
    public function add_plugin_page()
    {
        // This page will be under "Settings"
        add_options_page(
            'Settings Admin', 
            'My Settings', 
            'manage_options', 
            'my-setting-admin', 
            array( $this, 'create_admin_page' )
        );
    }

    /**
     * Options page callback
     */
    public function create_admin_page()
    {
        // Set class property
        $this->options = get_option( 'my_option_name' );
        ?>
        <div class="wrap">
            <h2>My Settings</h2>           
            <form method="post" action="options.php">
            <?php
                // This prints out all hidden setting fields
                settings_fields( 'my_option_group' );   
                do_settings_sections( 'my-setting-admin' );
                submit_button(); 
            ?>
            </form>
        </div>
        <?php
    }

    /**
     * Register and add settings
     */
    public function page_init()
    {        
        register_setting(
            'my_option_group', // Option group
            'my_option_name', // Option name
            array( $this, 'sanitize' ) // Sanitize
        );

        add_settings_section(
            'setting_section_id', // ID
            'My Custom Settings', // Title
            array( $this, 'print_section_info' ), // Callback
            'my-setting-admin' // Page
        );  

        add_settings_field(
            'id_number', // ID
            'ID Number', // Title 
            array( $this, 'id_number_callback' ), // Callback
            'my-setting-admin', // Page
            'setting_section_id' // Section           
        );      

        add_settings_field(
            'title', 
            'Title', 
            array( $this, 'title_callback' ), 
            'my-setting-admin', 
            'setting_section_id'
        );      
    }

    /**
     * Sanitize each setting field as needed
     *
     * @param array $input Contains all settings fields as array keys
     */
    public function sanitize( $input )
    {
        $new_input = array();
        if( isset( $input['id_number'] ) )
            $new_input['id_number'] = absint( $input['id_number'] );

        if( isset( $input['title'] ) )
            $new_input['title'] = sanitize_text_field( $input['title'] );

        return $new_input;
    }

    /** 
     * Print the Section text
     */
    public function print_section_info()
    {
        print 'Enter your settings below:';
    }

    /** 
     * Get the settings option array and print one of its values
     */
    public function id_number_callback()
    {
        printf(
            '<input type="text" id="id_number" name="my_option_name[id_number]" value="%s" />',
            isset( $this->options['id_number'] ) ? esc_attr( $this->options['id_number']) : ''
        );
    }

    /** 
     * Get the settings option array and print one of its values
     */
    public function title_callback()
    {
        printf(
            '<input type="text" id="title" name="my_option_name[title]" value="%s" />',
            isset( $this->options['title'] ) ? esc_attr( $this->options['title']) : ''
        );
    }
}

if( is_admin() )
    $my_settings_page = new MySettingsPage();

玩得开心,请理解你的所作所为!