大家好我是新手,我正在尝试创建一个搜索表单,但似乎是我的函数php文件的问题。 我知道事实上问题出在我的“if”语句中,但我不知道是否还有其他选项可以用来使它工作。这是代码:
function my_search_form( $form ) {
$form = '<form role="search" method="get" id="searchform" action="' . home_url( '/' ) . '" >
<input type="text" name="s" id="search" align="center" size="30" value="' . get_searchform() . '" onfocus="if(this.value == . 'search & hit enter' . ) { this.value = . '' . ; }" onblur="if(this.value == . '' . ) {this.value = . 'search & hit enter' . ; }" />
<input type="hidden" value="post" name="post_type" id="post_type" />
</form>';
return $form;
}
add_filter( 'get_search_form', 'my_search_form' );
答案 0 :(得分:0)
search & hit enter
此部分是无效代码,需要进行转义
function my_search_form( $form ) {
$form = '
<form role="search" method="get" id="searchform" action="' . home_url( '/' ) . '" >
<input type="text" name="s" id="search" align="center" size="30" value="' . get_searchform() . '" onfocus="if(this.value == \'search & hit enter\') { this.value = \'\'; }" onblur="if(this.value == \'\') {this.value =\'search & hit enter\'; }" />
<input type="hidden" value="post" name="post_type" id="post_type" />
</form>';
return $form;
}