web-dev-qa-db-ja.com

Add_settings_field()からコールバック関数に引数を渡す方法は?

私はこのような機能を持っています:

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グローバルに遭遇しました。これはどこで定義されていますか?

13
Calvin Froedge

関数の宣言を見てください。

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

最後のパラメータは引数を取り、それらをコールバック関数に渡します。

私のプラグインの例 公の連絡先データ

    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>";
}

グローバル変数に触れる必要はありません。

18
fuxia