2017-10-01 9 views
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 
      )   
     ); 
` 

例以下のコードです。

ありがとうございました!

+0

コードを2回コピーしました。例の1つを削除します。 – alexi2

+0

@ alexi2ありがとうございました:) –

+0

検索フォームのデフォルト値は?プレースホルダ? –

答えて

0

私はそれが今、私は 'デフォルト' => 'Myvalue'、

例のヘルプ/アドバイス

'keyword' => array(
       'label'   => __('Keyword or Listing ID', 'wpcasa') . '…', 
       'type'   => 'text', 
       'class'   => 'width-3-4', 
       'default'  => 'HELLO', 
       'priority'  => 10 
      ),  

感謝を追加する必要がありました!