{"id":319,"date":"2013-05-23T15:35:05","date_gmt":"2013-05-23T13:35:05","guid":{"rendered":"http:\/\/blog.leaves-and-love.net\/?p=319"},"modified":"2025-02-11T08:12:55","modified_gmt":"2025-02-11T16:12:55","slug":"how-to-improve-wordpress-seo-with-schema-org","status":"publish","type":"post","link":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/","title":{"rendered":"How To Improve WordPress SEO with Schema.org"},"content":{"rendered":"<p><a title=\"Schema.org Microdata\" href=\"http:\/\/schema.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">Schema.org<\/a> provides you a good way to optimize your website for search engines. SEO surely means much more than that, but the usage of Schema.org will improve your visibility to <a title=\"Google\" href=\"https:\/\/www.google.com\" target=\"_blank\" rel=\"noopener noreferrer\">Google<\/a> &amp; Co. a lot. Have you ever, for example, checked out movie search results at a website like <a title=\"Internet Movie Database\" href=\"http:\/\/www.imdb.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">IMDB.com<\/a> or <a title=\"Wikipedia\" href=\"http:\/\/www.wikipedia.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">Wikipedia.org<\/a>? They will mostly show you additional information for that particular movie, such as a trailer link, a link to release dates, maybe user ratings for this movie (check out the tiny yellow stars there!) and sometimes information about the actors, the director and much more, depending on your search query &#8211; and the website&#8217;s markup with Schema.org. So Google is not <em>that<\/em> intelligent that they know what the website is about &#8211; you gotta ensure this yourself by adding Schema.org microdata. While it does not directly improve your website&#8217;s rankings, the search results for your page will certainly look more appealing to users since additional information will be included.<br \/>\n<!--more--><\/p>\n<h2>What is Schema.org microdata?<\/h2>\n<p>Schema.org is a set of structured <a title=\"Microdata (HTML)\" href=\"http:\/\/en.wikipedia.org\/wiki\/Microdata_(HTML)\" target=\"_blank\" rel=\"noopener noreferrer\">microdata<\/a> markup. It allows you to add specific attributes to the HTML tags in your website to tell search engines and even other web services about your content. When you browse around their website, you will find something like a huge ordered list which shows you all the different kinds of contents you can present using their microdata markup. Schema.org is the recommended standard for working with microdata (it is supported by Google, Yahoo, Microsoft and more!), and it is the successor to <a title=\"Data-Vocabulary.org\" href=\"http:\/\/www.data-vocabulary.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">Data-Vocabulary.org<\/a>\u00a0which you will still see pretty often on websites &#8211; although you should use Schema.org as of today.<\/p>\n<h2>How To Generally Use Schema.org<\/h2>\n<p>There are two different kinds of things when working with microdata. You have some types of content, and all the types have a whole bunch of properties. So when you want to show the search engines that the information inside a <em>&lt;div&gt;<\/em> container is about a specific book, it has to look like this:<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335159.js\"><\/script><\/p>\n<p>So as you can see, the information about this type ends when closing the <em>&lt;div&gt;<\/em> again, remember that.<\/p>\n<p>Now we get to the properties, this is even more simple. If you want to make sure that Google gets to know the books name and the author, add the following markup inside your <em>&lt;div&gt;<\/em> you previously created.<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335167.js\"><\/script><\/p>\n<p>See how easy it works? Let me remind you though: we can only use the properties &#8220;name&#8221; and &#8220;author&#8221; because they are registered properties of the type <a title=\"Schema.org - Book\" href=\"http:\/\/schema.org\/Book\" target=\"_blank\" rel=\"noopener noreferrer\">&#8220;Book&#8221;<\/a> as specified by Schema.org. We could not use a property like &#8220;actors&#8221; here (which wouldn&#8217;t make sense anyway) since this one is registered for types like &#8220;Movie&#8221; or &#8220;TVSeries&#8221;, so Google would not understand that. So always make sure you know the type you want to use and which properties it supports &#8211; luckily, you have <a title=\"Schema.org - Schemas\" href=\"http:\/\/schema.org\/docs\/schemas.html\" target=\"_blank\" rel=\"noopener noreferrer\">Schema.org<\/a> which provides you all of this information.<\/p>\n<p>And there&#8217;s another thing which is really valuable: You can nest Schema.org markup, like you nest the HTML tags. Let me explain that: Some properties of a given type require not only a simple text, but another microdata type. For example, the property &#8220;bookFormat&#8221; (to stick with our example) requires a type called <a title=\"Schema.org - BookFormatType\" href=\"http:\/\/schema.org\/BookFormatType\" target=\"_blank\" rel=\"noopener noreferrer\">&#8220;BookFormatType&#8221;<\/a> which can be an instance like either &#8220;Ebook&#8221;, &#8220;Hardcover&#8221; or &#8220;Paperback&#8221;. So this would be added inside our &lt;div&gt; like so:<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335181.js\"><\/script><\/p>\n<p>Okay, there are even better examples since &#8220;BookFormatType&#8221; is a pretty simple type. You could add the &#8220;publisher&#8221; of the book. This requires a type called <a title=\"Schema.org - Organization\" href=\"http:\/\/schema.org\/Organization\" target=\"_blank\" rel=\"noopener noreferrer\">&#8220;Organization&#8221;<\/a> which itself has its own properties like &#8220;name&#8221;, &#8220;email&#8221;, &#8220;logo&#8221; or &#8220;address&#8221; and more. Everytime you specify such a type that has its own properties, make sure to use the itemscope attribute in addition to the itemtype attribute. So here&#8217;s what the markup of all this stuff will look like:<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335185.js\"><\/script><\/p>\n<p>As you can see, there&#8217;s even an additional type <a title=\"Schema.org - PostalAddress\" href=\"http:\/\/schema.org\/PostalAddress\" target=\"_blank\" rel=\"noopener noreferrer\">&#8220;PostalAddress&#8221;<\/a> which contains the different elements of an address, so not only is the &#8220;Organization&#8221; nested inside the &#8220;Book&#8221;, the &#8220;PostalAddress&#8221; is also nested inside the &#8220;Organization&#8221;. Also take care of the meta tag used in there &#8211; you are allowed to include such information which is invisible to the visitor of the website as long as you do not overuse it. And the last thing (which is really important) you should know is that all the different types are set up in a tree structure by Schema.org (check out <a title=\"Schema.org Tree Structure\" href=\"http:\/\/schema.org\/docs\/full.html\" target=\"_blank\" rel=\"noopener noreferrer\">this page as a reference<\/a>), so any child type inherits the properties of its parent type. Some types also have several different versions which might be more precise, for example you could also have used <a title=\"Schema.org - Corporation\" href=\"http:\/\/schema.org\/Corporation\" target=\"_blank\" rel=\"noopener noreferrer\">&#8220;Corporation&#8221;<\/a> instead of &#8220;Organization&#8221; in the example above.<\/p>\n<h2>How To Test Your Markup<\/h2>\n<p>You can easily test your Schema.org markup. All you have to do is enter the URL of your page in the <a title=\"Google Structured Data Testing Tool\" href=\"http:\/\/www.google.com\/webmasters\/tools\/richsnippets\" target=\"_blank\" rel=\"noopener noreferrer\">Google Structured Data Testing Tool<\/a>. It will then show you all the information it can fetch from your page, and you will also see a preview of what a search result could look like. It currently does not fully support the looks of Schema.org markup for the search result preview, so please check the bottom of the website where it presents the data it received through your markup.<\/p>\n<h2>How To Use Schema.org in WordPress<\/h2>\n<p>To use Schema.org in <a title=\"WordPress CMS\" href=\"http:\/\/wordpress.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress<\/a> is as easy as described above. There are more than a million ways to do it, so I encourage you to find your own way. Here in this article, I can only show you an example.<br \/>\nFor this example (and generally) you should have the amazing plugin <a title=\"WordPress SEO by Yoast\" href=\"http:\/\/yoast.com\/wordpress\/seo\/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress SEO<\/a> installed and activated. I will show you how to set up your website so that it contains the most important elements of the <a title=\"Schema.org - WebPage\" href=\"http:\/\/schema.org\/WebPage\" target=\"_blank\" rel=\"noopener noreferrer\">&#8220;WebPage&#8221;<\/a> type and some information about the business behind it. You have to edit your theme or <a title=\"Child Theme Friendly WordPress Development\" href=\"http:\/\/blog.leaves-and-love.net\/child-theme-friendly-wordpress-development\/\">create a child theme<\/a>.<\/p>\n<h3>Setting Up WebPage Information<\/h3>\n<p>The &lt;html&gt; tag of your website should contain the type of your website. So in addition to the <a title=\"language_attributes Function Reference\" href=\"http:\/\/codex.wordpress.org\/Function_Reference\/language_attributes\" target=\"_blank\" rel=\"noopener noreferrer\"><em>language_attributes<\/em><\/a> function, include another function called <em>yourtheme_html_schema<\/em> within your first tag.<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335219.js\"><\/script><\/p>\n<p>You can insert the new function in your theme&#8217;s <em>functions.php<\/em> file. It should look like this:<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335240.js\"><\/script><\/p>\n<p>Having this function set up, you now have a first Schema.org microdata markup that tells Google what kind of WebPage is displayed. WebPage is the default, and it is only used when none of the criteria above match. Keep in mind that you should add custom post types that handle specific items to the array as specified in the comment above.<\/p>\n<h3>Adding Schema.org markup to the header<\/h3>\n<p>Now we&#8217;re gonna start modifying the <em>&lt;head&gt;<\/em> the website. To add the property &#8220;name&#8221;, modify your <em>header.php<\/em> by simply adding the attribute to the title.<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335253.js\"><\/script><\/p>\n<p>Now you should add another function that creates Schema.org markup from the canonical and description meta tags in the <em>&lt;head&gt;<\/em>. For this, we will use the global class WPSEO_Frontend from the WordPress SEO plugin.<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335262.js\"><\/script><\/p>\n<p><strong>UPDATE:<\/strong> As of WordPress SEO version 1.7.2, the above code does not work any longer. Please use the code right below instead.<\/p>\n<p><script src=\"https:\/\/gist.github.com\/b3dcdc41c55ec43fcc98.js\"><\/script><\/p>\n<h3>Adding breadcrumbs to your page<\/h3>\n<p>Some short words about breadcrumbs: The WordPress SEO plugin provides a great way to embed breadcrumbs. All you need is to add the following code to your theme where you want the breadcrumbs to show up.<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335273.js\"><\/script><\/p>\n<p>However, these breadcrumbs are realized using the old Data-Vocabulary markup (as explained in the first paragraph of this article) which is fine though: for an unknown reason, the Schema.org markup for breadcrumbs is not really giving Google the information it should receive. So, keep in mind to check for updates on this regularly, but for now I recommend you to still use the old markup which the WordPress SEO plugin provides.<\/p>\n<h3>Marking the main content of your page<\/h3>\n<p>Now you need to edit your main content container div that should have an id like &#8220;content&#8221; or something similar. Modify it in every theme file (<em>single.php<\/em>, <em>page.php<\/em>, <em>archive.php<\/em> and all the others&#8230;) to let Google and the other search engines know where your main content is located:<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335279.js\"><\/script><\/p>\n<p>You should now markup your content. Please don&#8217;t be mad that I didn&#8217;t include a whole tutorial on this, but as I said, there are more than a million ways of handling this. If you have some content which already has Schema.org types that perfectly match it (for example when your page is about movies, books or software applications), you will find out that this is fairly easy. I advise you to spy at some HTML code of other websites that use Schema.org markup, for example <a title=\"eBay\" href=\"http:\/\/www.ebay.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">ebay.com<\/a>, <a title=\"IMDB\" href=\"http:\/\/www.imdb.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">IMDB.com<\/a> or <a title=\"ticketmaster\" href=\"http:\/\/www.ticketmaster.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">ticketmaster.com<\/a>.<\/p>\n<h3>Inserting business information with Schema.org<\/h3>\n<p>As a final task of this simple tutorial, I&#8217;ll show you how to insert business information for your WordPress website with Schema.org. In this example, this will be a an &#8220;Organization&#8221; of the more specific type &#8220;LocalBusiness&#8221;. I recommend you to create a simple text\/html widget somewhere at the bottom of your page which will also work as a kind of contact widget for your visitors. Make sure it is outside your &#8220;WebPageElement&#8221; you created above, since it should be a direct child of the &#8220;WebPage&#8221; type for best results. The widget&#8217;s content could look like this:<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7335282.js\"><\/script><\/p>\n<p>This way Google would know all the above information about the business behind this webpage. And since you&#8217;re using a widget, it would also provide most of this information for the users aswell. Of course you could also combine this Schema.org markup with the techniques I showed you in <a title=\"How To Add Contact Information In WordPress\" href=\"http:\/\/blog.leaves-and-love.net\/how-to-add-contact-information-in-wordpress\/\">&#8220;How To Add Contact Information In WordPress&#8221;<\/a>. Now you&#8217;re ready to get started with Schema.org and WordPress. <strong>Optimize your website, provide your information not only to the users, but to the search engines as well!<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Schema.org provides you a good way to optimize your website for search engines. SEO surely means much more than that, but the usage of Schema.org will improve your visibility to Google &amp; Co. a lot. Have you ever, for example, checked out movie search results at a website like IMDB.com or Wikipedia.org? They will mostly [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":530,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[71,70,97],"tags":[],"class_list":["post-319","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-web-technologies","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Improve WordPress SEO with Schema.org - felix-arntz.me<\/title>\n<meta name=\"description\" content=\"Using Schema.org structured microdata, you can tell search engines about the content on your site. Here you see how this can be accomplished with WordPress.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Improve WordPress SEO with Schema.org - felix-arntz.me\" \/>\n<meta property=\"og:description\" content=\"Using Schema.org structured microdata, you can tell search engines about the content on your site. Here you see how this can be accomplished with WordPress.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/\" \/>\n<meta property=\"og:site_name\" content=\"felix-arntz.me\" \/>\n<meta property=\"article:published_time\" content=\"2013-05-23T13:35:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-11T16:12:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1440\" \/>\n\t<meta property=\"og:image:height\" content=\"540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Felix\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@felixarntz\" \/>\n<meta name=\"twitter:site\" content=\"@felixarntz\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Felix\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/\"},\"author\":{\"name\":\"Felix\",\"@id\":\"https:\/\/felix-arntz.me\/#\/schema\/person\/c7c3c658d2e59bbddf3e8684a6846e55\"},\"headline\":\"How To Improve WordPress SEO with Schema.org\",\"datePublished\":\"2013-05-23T13:35:05+00:00\",\"dateModified\":\"2025-02-11T16:12:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/\"},\"wordCount\":1743,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/felix-arntz.me\/#\/schema\/person\/c7c3c658d2e59bbddf3e8684a6846e55\"},\"image\":{\"@id\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg\",\"articleSection\":[\"Tutorials\",\"Web Technologies\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/\",\"url\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/\",\"name\":\"How To Improve WordPress SEO with Schema.org - felix-arntz.me\",\"isPartOf\":{\"@id\":\"https:\/\/felix-arntz.me\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg\",\"datePublished\":\"2013-05-23T13:35:05+00:00\",\"dateModified\":\"2025-02-11T16:12:55+00:00\",\"description\":\"Using Schema.org structured microdata, you can tell search engines about the content on your site. Here you see how this can be accomplished with WordPress.\",\"breadcrumb\":{\"@id\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#primaryimage\",\"url\":\"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg\",\"contentUrl\":\"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg\",\"width\":1440,\"height\":540,\"caption\":\"How To Improve WordPress SEO with Schema.org\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/felix-arntz.me\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tutorials\",\"item\":\"https:\/\/felix-arntz.me\/blog\/category\/tutorials\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How To Improve WordPress SEO with Schema.org\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/felix-arntz.me\/#website\",\"url\":\"https:\/\/felix-arntz.me\/\",\"name\":\"felix-arntz.me\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/felix-arntz.me\/#\/schema\/person\/c7c3c658d2e59bbddf3e8684a6846e55\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/felix-arntz.me\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/felix-arntz.me\/#\/schema\/person\/c7c3c658d2e59bbddf3e8684a6846e55\",\"name\":\"Felix\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/felix-arntz.me\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/felix-arntz.me\/wp-content\/uploads\/2018\/09\/felix-arntz-site-icon.png\",\"contentUrl\":\"https:\/\/felix-arntz.me\/wp-content\/uploads\/2018\/09\/felix-arntz-site-icon.png\",\"width\":512,\"height\":512,\"caption\":\"Felix\"},\"logo\":{\"@id\":\"https:\/\/felix-arntz.me\/#\/schema\/person\/image\/\"},\"description\":\"Developer Programs Engineer at Google. WordPress Core Committer. Previously Yoast. Runner, musician, movie geek. Aprendiendo espa\u00f1ol. Fueled by Mountain Dew.\",\"sameAs\":[\"https:\/\/x.com\/felixarntz\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Improve WordPress SEO with Schema.org - felix-arntz.me","description":"Using Schema.org structured microdata, you can tell search engines about the content on your site. Here you see how this can be accomplished with WordPress.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/","og_locale":"en_US","og_type":"article","og_title":"How To Improve WordPress SEO with Schema.org - felix-arntz.me","og_description":"Using Schema.org structured microdata, you can tell search engines about the content on your site. Here you see how this can be accomplished with WordPress.","og_url":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/","og_site_name":"felix-arntz.me","article_published_time":"2013-05-23T13:35:05+00:00","article_modified_time":"2025-02-11T16:12:55+00:00","og_image":[{"width":1440,"height":540,"url":"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg","type":"image\/jpeg"}],"author":"Felix","twitter_card":"summary_large_image","twitter_creator":"@felixarntz","twitter_site":"@felixarntz","twitter_misc":{"Written by":"Felix","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#article","isPartOf":{"@id":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/"},"author":{"name":"Felix","@id":"https:\/\/felix-arntz.me\/#\/schema\/person\/c7c3c658d2e59bbddf3e8684a6846e55"},"headline":"How To Improve WordPress SEO with Schema.org","datePublished":"2013-05-23T13:35:05+00:00","dateModified":"2025-02-11T16:12:55+00:00","mainEntityOfPage":{"@id":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/"},"wordCount":1743,"commentCount":0,"publisher":{"@id":"https:\/\/felix-arntz.me\/#\/schema\/person\/c7c3c658d2e59bbddf3e8684a6846e55"},"image":{"@id":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#primaryimage"},"thumbnailUrl":"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg","articleSection":["Tutorials","Web Technologies","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/","url":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/","name":"How To Improve WordPress SEO with Schema.org - felix-arntz.me","isPartOf":{"@id":"https:\/\/felix-arntz.me\/#website"},"primaryImageOfPage":{"@id":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#primaryimage"},"image":{"@id":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#primaryimage"},"thumbnailUrl":"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg","datePublished":"2013-05-23T13:35:05+00:00","dateModified":"2025-02-11T16:12:55+00:00","description":"Using Schema.org structured microdata, you can tell search engines about the content on your site. Here you see how this can be accomplished with WordPress.","breadcrumb":{"@id":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#primaryimage","url":"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg","contentUrl":"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg","width":1440,"height":540,"caption":"How To Improve WordPress SEO with Schema.org"},{"@type":"BreadcrumbList","@id":"https:\/\/felix-arntz.me\/blog\/how-to-improve-wordpress-seo-with-schema-org\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/felix-arntz.me\/"},{"@type":"ListItem","position":2,"name":"Tutorials","item":"https:\/\/felix-arntz.me\/blog\/category\/tutorials\/"},{"@type":"ListItem","position":3,"name":"How To Improve WordPress SEO with Schema.org"}]},{"@type":"WebSite","@id":"https:\/\/felix-arntz.me\/#website","url":"https:\/\/felix-arntz.me\/","name":"felix-arntz.me","description":"","publisher":{"@id":"https:\/\/felix-arntz.me\/#\/schema\/person\/c7c3c658d2e59bbddf3e8684a6846e55"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/felix-arntz.me\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/felix-arntz.me\/#\/schema\/person\/c7c3c658d2e59bbddf3e8684a6846e55","name":"Felix","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/felix-arntz.me\/#\/schema\/person\/image\/","url":"https:\/\/felix-arntz.me\/wp-content\/uploads\/2018\/09\/felix-arntz-site-icon.png","contentUrl":"https:\/\/felix-arntz.me\/wp-content\/uploads\/2018\/09\/felix-arntz-site-icon.png","width":512,"height":512,"caption":"Felix"},"logo":{"@id":"https:\/\/felix-arntz.me\/#\/schema\/person\/image\/"},"description":"Developer Programs Engineer at Google. WordPress Core Committer. Previously Yoast. Runner, musician, movie geek. Aprendiendo espa\u00f1ol. Fueled by Mountain Dew.","sameAs":["https:\/\/x.com\/felixarntz"]}]}},"jetpack_featured_media_url":"https:\/\/felix-arntz.me\/wp-content\/uploads\/2013\/05\/how-to-improve-wordpress-seo-with-schema-org.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/posts\/319","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/comments?post=319"}],"version-history":[{"count":5,"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/posts\/319\/revisions"}],"predecessor-version":[{"id":1313,"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/posts\/319\/revisions\/1313"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/media\/530"}],"wp:attachment":[{"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/media?parent=319"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/categories?post=319"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/felix-arntz.me\/api\/wp\/v2\/tags?post=319"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}