SEO - 如何在 Google 上获取搜索栏?

Hey,

This is the content you see at google when you search at my site (I know you might not understand the text):

48

This is how it look if you e.g search at “Lægeforeningen”.

How to change the layout at google to e.g include a search bar for my site and nice layout then the “random” text at the moment?

I dont know anything about SEO :smiley: Are there anything I can do ?

For search box you may need to add some code inside <head> tag as suggested here Sitelinks Searchbox  |  Search  |  Google Developers. And I think site links need to be configured via Google Webmaster tools.

The URL of a search in discourse has the following format:

https://your.domain.tld/search?q=test

So I think if you added this to the body of a theme component (the only thing you have to change is your.domain.tld):

<script type="application/ld+json">
{
   "@context": "http://schema.org",
   "@type": "WebSite",
   "url": "https://your.domain.tld/",
   "potentialAction": {
     "@type": "SearchAction",
     "target": "https://your.domain.tld/search?q={search_term_string}",
     "query-input": "required name=search_term_string"
   }
}
</script>

It could eventually work, bear in mind, that in the end only google is deciding if this will show or not, so you could add this code and it would do nothing.

@sam we might want consider doing this by default what do you think ?

I think it’s in body, do you see somewhere it’s saying <head> ?

this would be pretty badass if it was on by default…

Yes it can be placed in body. Pinterest also placed it in body only.

It definitely sounds like a pretty cool feature for public sites, but I’d just like to caution that it would look weird on private ones. My preference would be to have it off by default, or have the ability to turn it off for private sites.

Now I did try to to add that snippet.

We will see if google eat it and it will add a search bar

Any way thanks for the help!

I kind of like it, @codinghorror what do you think?

AFAICT, the sitelinks generally display in the SERPs when the search terms are more “general”.

For example a search for “Discourse meta” shows sitelinks. But a search for “discourse seo search bar google” will not have them under the link to this topic, nor under the same Discourse meta link after it that had them for the more general search.

Kind of like “give me the table of contents” vs “give me this page”

I dunno we already have this

<link rel="search" type="application/opensearchdescription+xml" href="https://meta.discourse.org/opensearch.xml" title="Discourse Meta Search">

Are people really going to be searching for the name of the site? That seems like a rare edge condition to me, not something we want to add permanent markup for.

Yes, people do this all the time. They do it because they don’t know what a URL is or how to create a bookmark – it’s simply their way to open any website.

This is somewhat sad, but surprisingly true :sadpanda:

I think this is a really good addition and unique point of difference. It highlights the site in search results, it stands more a chance of being used than being absent considering seems like a trivial update to make.

有人试过这个并得到结果了吗? :slight_smile:

我希望必应、雅虎和 DuckDuckGo 也能有类似的功能。:slightly_smiling_face:

我对此进行了研究,并发现了 Google 的富结果测试工具(https://search.google.com/test/rich-results)。我注意到,将几个 Discourse 网址放入该测试工具后,它们似乎都包含了上述Joffrey 回复中提到的结果。

结果可能因情况而异,但我认为还是分享一下我的发现吧。