0

共同開発者が、Wordpress の管理エリアの管理セクションにカスタム フォームを作成しました。管理セクションの他の場所に表示する値を取得しようとしています。get_option() を使用すると、名前で呼び出すことでその値を取得できると思いましたが、値が返されず、呼び出す方法がわかりません。

これが彼が作成したセクションなので、get_option('contact_person_address') を使用して取得できると思いました。

$wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'contact_person_address', array(
            'label'        => __( 'Site Contact Room Number & Building', 'coe' ),
            'section'    => 'contact_person',
            'settings'   => 'contact_person_address',
        ) ) );

$wp_customize->add_setting( 'contact_person_address' , array(
                'default'     => '',
                'transport'   => 'postMessage',
            ) );

関数に割り当てたデフォルトを返すだけです。

4

1 に答える 1

0

get_theme_mod() を使用してカスタム フィールドの値を取得します。

于 2013-06-27T14:39:39.713 に答える