3
私はwpcasaである私のプロジェクトのためのwordpressの不動産のプラグインを使用しています、私はすでにいくつかの変更を行いますが、このことは把握するために私の時間がかかります。設定方法検索フォームのデフォルト値は?
私は配列を使って検索フォームに値やラベルを設定していると思います。 誰でもデフォルト値を検索フォームに追加する方法を教えてください。
ここで私が代わりにそのラベルを示す値HOMEを設定しますキーワードの
$defaults = array(
'keyword' => array(
'label' => __('Keyword or Listing ID', 'wpcasa') . '…',
'type' => 'text',
'class' => 'width-3-4',
'priority' => 10
),
'submit' => array(
'label' => __('Search', 'wpcasa'),
'type' => 'submit',
'class' => 'width-1-4',
'priority' => 20
),
'offer' => array(
'label' => __('Offer', 'wpcasa'),
'key' => '_price_offer',
'data' => wpsight_offers(),
'type' => 'select',
'data_compare' => '=',
'class' => 'width-1-5',
'priority' => 30
),
'location' => array(
'data' => array(
// wp_dropdown_categories() options
'taxonomy' => 'location',
'show_option_none' => __('Location', 'wpcasa'),
'option_none_value' => '',
'hierarchical' => 1,
'orderby' => 'ID',
'order' => 'ASC'
),
'type' => 'taxonomy_select',
'class' => 'width-1-5',
'priority' => 40
),
'listing-type' => array(
'data' => array(
// wp_dropdown_categories() options
'taxonomy' => 'listing-type',
'show_option_none' => __('Type', 'wpcasa'),
'option_none_value' => '',
'hierarchical' => 1,
'orderby' => 'ID',
'order' => 'ASC'
),
'type' => 'taxonomy_select',
'class' => 'width-1-5',
'priority' => 50
),
$details['details_1']['id'] => array(
'label' => $details['details_1']['label'],
'key' => '_details_1',
'data' => $details['details_1']['data'],
'type' => 'select',
'data_compare' => '>=',
'class' => 'width-1-5',
'priority' => 60
),
$details['details_2']['id'] => array(
'label' => $details['details_2']['label'],
'key' => '_details_2',
'data' => $details['details_2']['data'],
'type' => 'select',
'data_compare' => '>=',
'class' => 'width-1-5',
'priority' => 70
)
);
`
例以下のコードです。
ありがとうございました!
コードを2回コピーしました。例の1つを削除します。 – alexi2
@ alexi2ありがとうございました:) –
検索フォームのデフォルト値は?プレースホルダ? –