Automattic / wp-calypso

The JavaScript and API powered WordPress.com
https://developer.wordpress.com
GNU General Public License v2.0
12.42k stars 1.99k forks source link

Themes: Add SEO to ‘/design` #1329

Closed ehg closed 8 years ago

ehg commented 8 years ago

In addition to server-side-rendering, we need to add the various meta data to /design to help with SEO. Using react-helmet is a pretty neat, and easy way to do this.

What SEO tags do we need?

<meta name="description" property="og:description" content=”DESCRIPTION"/>
<meta property="og:title" content=”TITLE"/>
<title>TITLE</title>
<meta property="og:url" content="CANONICAL_URL"/>
<link rel="canonical" href="CANONICAL_URL"/>

TODO:

/design[/type/all]

/design/type/free

/design/type/premium

ehg commented 8 years ago

https://github.com/Automattic/wp-calypso/pull/2182