2011-07-20 23 views

回答

2

還有一個叫searchform.php模板文件。這是一個模板文件,通常包含在許多主題的邊欄中,並生成搜索框表單。如果您的主題中沒有一個,則可以輕鬆地將其從默認主題中複製,或者下面的代碼

<form method="get" id="searchform" action="<?php echo esc_url(home_url('/')); ?>"> 
    <label for="s" class="assistive-text"><?php _e('Search'); ?></label> 
    <input type="text" name="s" id="s" placeholder="<?php esc_attr_e('Search'); ?>" onfocus="if (this.value == 'Search') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search';}" /> 
    <input type="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e('Search'); ?>" /> 
</form>