问题描述

我有一个这样的功能:

add_settings_field( 'contact_phone', 'Contact Phone', 'settings_callback', 'general');

这样可行。它叫做 settings_callback 。凉。我有这样的问题是:我不想为每个添加的设置定义一个回调函数,如果我正在做的是回显一点点东西。

function settings_callback()
{
    echo '<input id="contact_phone" type="text" class="regular-text" name="contact_phone" />';
}

为什么我应该这样做? id,class 和 name 都应该是 params 。

有没有办法将参数传递给 settings_callback 功能?我开始看核心,在这里:http://core.trac.wordpress.org/browser/tags/3.1.3/wp-admin/includes/template.php

.. 并遇到这个 $ wp_settings_fields 全局。这个定义在哪里?

最佳解决方案

看看函数的声明:

function add_settings_field(
    $id,
    $title,
    $callback,
    $page,
    $section = 'default',
    $args    = array()
) { }

最后一个参数需要你的参数并将它们传递给回调函数。

示例从我的插件 Public Contact Data

    foreach ( $this->fields as $type => $desc )
    {
        $handle   = $this->option_name . "_$type";
        $args     = array (
            'label_for' => $handle,
            'type'      => $type
        );
        $callback = array ( $this, 'print_input_field' );

        add_settings_field(
            $handle,
            $desc,
            $callback,
            'general',
            'default',
            $args
        );
    }

函数 print_input_field()将这些参数作为第一个参数:

/**
 * Input fields in 'wp-admin/options-general.php'
 *
 * @see    add_contact_fields()
 * @param  array $args Arguments send by add_contact_fields()
 * @return void
 */
public function print_input_field( array $args )
{
    $type   = $args['type'];
    $id     = $args['label_for'];
    $data   = get_option( $this->option_name, array() );
    $value  = $data[ $type ];

    'email' == $type and '' == $value and $value = $this->admin_mail;
    $value  = esc_attr( $value );
    $name   = $this->option_name . '[' . $type . ']';
    $desc   = $this->get_shortcode_help( $type );

    print "<input type='$type' value='$value' name='$name' id='$id'
        class='regular-text code' /> <span class='description'>$desc</span>";
}

无需触摸全局变量。

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。