0

我在 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 中的表格,或者我不明白。

4

2 回答 2

0

您需要属性 value 才能获取它。

<input class="first" type="text" name="name" value="something" />
于 2013-09-20T18:03:59.030 回答
0

在 WP 中无法发送 get 'name'

<input class="first" type="text" name="name" /> <-不好

<input class="first" type="text" name="notname" /><-好的

于 2013-09-21T10:57:40.303 回答