# Issue with the Search widget on my website

**URL:** https://community.swiftype.com/t/issue-with-the-search-widget-on-my-website/296
**Category:** General
**Created:** [December 11, 2016, 6:44am UTC](https://community.swiftype.com/t/issue-with-the-search-widget-on-my-website/296 "2016-12-11T06:44:42Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![theslyshow](https://avatars.discourse-cdn.com/v4/letter/t/bc8723/32.png) [@theslyshow](https://community.swiftype.com/u/theslyshow)
#### Post date: [December 11, 2016, 6:44am UTC](https://community.swiftype.com/t/issue-with-the-search-widget-on-my-website/296/1 "2016-12-11T06:44:42Z")

</div>

Having an issue with the search widget that’s posted on my website, could someone please give me the proper code for my searchbox.php

```
    <form>
  <input type="text" class="st-default-search-input">
  <button type="submit">Submit</button>
 </form>

```

---

<div class="post-metadata">

### Author: ![cpatton](https://avatars.discourse-cdn.com/v4/letter/c/f04885/32.png) [@cpatton](https://community.swiftype.com/u/cpatton)
#### Post date: [December 14, 2016, 10:40pm UTC](https://community.swiftype.com/t/issue-with-the-search-widget-on-my-website/296/2 "2016-12-14T22:40:28Z")

</div>

Hey there, Sly!

Mind giving this a shot? The WordPress plugin looks for the **name=“s”** attribute, instead of **st-default-search-input**.

```
<form>
    <input type="text" class="st-default-search-input" name="s">
    <button type="submit">Submit</button>
</form>

```
