欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

hook search_block_form 通过 #after_build 来修改 alter form 有大用 有大大用

function custom_one_form_alter(&$form, &$form_state, $form_id)
{
 
 
  if('search_block_form' == $form_id){
    $form['#after_build'][] = 'custom_one_after_build_search_block_form';
  }


}
function custom_one_after_build_search_block_form($form, &$form_state) {
  $form['search_block_form']['#attributes']['placeholder'] ='搜索';
 
  return $form;
}


普通分类: