我在 WP 中有表单和页面(模板页面)。通过表单,我想发送值 GET,然后页面创建查询。
形式:
<form id="homepage_form" method="get">
<input type="hidden" name="p" value="48" />
<input class="first" type="text" name="name" />
<input type="text" name="location"/>
<select name="category">
<option value="0" disabled selected>Kategori</option>
</select>
<input class="btn" type="submit" value="Search" />
</form>
第一个问题。我需要在表单中发送 id 页面吗?(输入类型="hidden" name="p" value="48")。也许是其他方法。
第二个问题。当我发送此表单时,我看到了“page_id_48/?location=asdasd”。WP 窃取了第二个 GET(名称)。
现在我知道了……我不喜欢 WP 中的表格,或者我不明白。