Recipe Rich Pins for Blogger (2024)

Recipe Rich Pins for Blogger (1)

Starting in the spring of 2015, some of my readers have not been able to successfully validate their blogs for Recipe pins using the markup from this tutorial. It seems that Pinterest may have changed some of the requirements, but hasn't updated the documentation for Recipe Rich Pins yet. Since the documentation hasn't changed I don't know what is different about the Recipe validation process. I'll keep an eye on the documentation to see if updates become available.

It can't hurt your blog to add this markup — it's recognized by other search engines, too — but it may not get you validated for Recipe Rich Pins.

I'm a total foodie, so I'm excited to share a little something special for food bloggers today! In this post I'm going to show you how to enable recipe Rich Pins for Pinterest on your Blogger blog.

If you haven't seen them yet, Rich Pins are Pins with a bit of extra information on them — for recipes, you can add ingredients, instructions, cooking times, and more.

Recipe Rich Pins for Blogger (2)

We'll use hRecipe markup to enable Rich Pins in recipe posts. You can use this markup to turn any recipe on your blog into a Rich Pin-able recipe, even if you're not exclusively a food blogger!

I'm going to show you how to write the markup "by hand" first, then share a few free online tools to help you write your markup faster.

Ready to get started? Let's do it!

Markup For Your Template

The majority of the Rich Pins markup goes into individual posts, but I'm going to save you a little work by giving you one line of code to add directly to your template.

First, back up your template (instructions here). Do not skip the backup.

Next, open up your template by clicking the "Edit HTML" button below your "Live on Blog" screenshot. Find the <head> tag near the top of your template code (it's usually in the first 10 lines).

Immediately below the <head> tag, enter this meta tag:

<meta property="og:site_name" content="YOUR SITE NAME HERE" />

Replace "YOUR SITE NAME HERE" with the name of your blog. You can do that as a title (for example, "Code it Pretty") or as your blog's URL (for example, "www.codeitpretty.com").

Recipe Rich Pins for Blogger (3)

Next, press the orange "Save template" button to save your updated template.

Marking Up Your First Recipe

I'm going to show you how to completely mark up a recipe to make a fully detailed Rich Pin, but you should know that Pinterest only requires you to mark up two parts of your post for Rich Pins: the title of the recipe and at least some of the ingredients.

If you want to leave a little "mystery" to entice Pinterest users to click through to your post, you can just mark up the title and key ingredients. Nothing else is required.

For best results, start with a recipe that has already been published on your blog, and has also already been Pinned to Pinterest. Also, if you don't already have a favicon for your blog, add one! It will show up on Rich Pins from your blog.

Switch to the HTML Editor

Open up a post you'd like to make Rich Pin-nable and switch to the HTML editor by clicking the HTML button at the upper right of your post editor. The HTML button turns a slightly darker grey when it's selected.

Recipe Rich Pins for Blogger (4)

Wrap Your Recipe

Pinterest needs a signal to know your post includes a recipe, so we're going to wrap the recipe portion of your post with an HTML element called a div.

Find your recipe in the body of your post and add this line right above the recipe's title:

<div class="hrecipe">

Then, find the end of the recipe, and add a closing </div> tag below the last line of the recipe:

</div>

Recipe Rich Pins for Blogger (5)

That closing </div> tag is super important. If you leave it off, your sidebar will get pushed to the bottom of the page, so don't forget it!

Next: Mark Up Your Recipe Title

Find your recipe's title in the body of your post. Add this line right before the first word of your recipe's title:

<span class="fn">

Then, add a closing </span> tag at the end of the title, like this:

<span class="fn"> Orange-Pineapple-Carrot Smoothie </span>

Again, the closing tag is important, so don't leave it out.

Recipe Rich Pins for Blogger (6)

Next: Mark Up Ingredients

You don't have to mark up all of your ingredients, but it's helpful if you include the major stuff. Each ingredient needs to be marked up individually with the class "ingredient".

Wrap a <span> tag around each ingredient with a class of "ingredient", like this:

<span class="ingredient">3/4 cup chopped fresh pineapple </span>

Recipe Rich Pins for Blogger (7)

Repeat the process for each ingredient you want to mark up.

If you wrote your ingredient list as an ordered or unordered list, you can insert class="ingredient" into the opening list item tags for your ingredients instead, like this:

<li class="ingredient">3/4 cup chopped fresh pineapple </li>

The effect is the same as adding a span tag, it just saves you some time!

Optional Markup

Yield

You can indicate your recipe's total number of servings using the "yield" class, like this:

<span class="yield">Serves 1</span>

Cook Time, Prep Time, and Duration

You can indicate cooking time, preparation time, and the total time it will take to make your recipe. Here are example of how to indicate each:

Cook Time

<span class="cookTime"><span class="value-title" title="10M"> </span>10 minutes</span>

Prep Time

<span class="prepTime"><span class="value-title" title="10M"> </span>10 minutes</span>

Duration (prep and cook time combined)

<span class="duration"><span class="value-title" title="10M"> </span>10 minutes</span>

To change the time markup to match your recipe, change "title" value to the correct amount of time. Minutes are indicated with a capital M, hours are indicated with a capital H.

Re-Publish Your Post

When you're all marked up and ready to publish, press the orange "Publish" button up top. Your published post will look normal to your readers — the little bits of markup we added around your recipe won't be visible in the published post. But, if you view your page source you'll see everything you just added to the post.

Test Your Recipe Markup and Submit to Pinterest

Now you're ready to test your Rich Pins! Before you test, though, you should know that the Pinterest validator is flaky. Your first recipe may not pass — one of my tests failed even though I was using Pinterest's own demo markup. If your first URL doesn't validate, try again with another post. As long as you're using the correct markup, you should be able to pass validation after a few tries. Here's how to get validated:

  • Go to the Rich Pins Validator on Pinterest's developers site and submit the link to your post with rich pin markup — not your home page.
  • If your URL fails, don't get discouraged. Mark up another recipe and submit that one, making sure to include the recipe name and ingredients markup. It can take a few tries before the validator recognizes your markup, even if it is correctly formatted.
  • When your URL passes, you'll be prompted to apply for Rich Pins. Click the "Apply Now" link to continue.
  • On the next screen, check the "website domain" field. If you have a .blogspot.com URL, you'll need to correct the URL to your blog's actual address (for example, codeitpretty.blogspot.com).
  • Set the "Data Format" radio button to "HTML Tags" and press the red "Apply Now" button.

After you apply, you'll see a preview of how your Rich Pins will look. The screenshot below was provided by Olivia Morrissey from Not A Plain Jayne, one of the early testers of this tutorial.

Recipe Rich Pins for Blogger (8)

Pinterest takes a few days to approve blogs for Rich Pins, and will notify you by email when you are approved. Olivia got her approval notification in 4 days.

Recipe Markup Tools

If you need a little help speeding up the process, there are two free online tools you can use to generate your markup.

RecipeSEO.com is an online recipe builder that generates hRecipe markup for you.

If you use the Chrome browser, you can use the hRecipe Helper extension.

Image in title card CC-BY Flickr user ilovebutter.

Recipe Rich Pins for Blogger (2024)

FAQs

How do you make a rich pin recipe? ›

If you have product, article or recipe content on your site, you'll need to add rich meta tags to those pages. All content from pages that have the correct meta tags will appear as rich Pins when you create a new Pin. Existing Pins that link back to pages with rich meta tags will now appear as Rich Pins.

How many pins should I make for one blog post? ›

As the most important factor for success with the Pinterest algorithm seems to be the “freshness” of the pins, you should: create multiple Pins (images) per new blog post e.g. 5-10 individual Pins per post.

What do rich pins look like? ›

What do Rich Pins look like? Article Rich Pins show the title, the meta description (snippet), publish date, and sometimes the author's name. In the feed, the article Pin shows the title of the post. You will see the additional information when you click on the Pin.

What is the difference between rich pins and regular pins? ›

Here's how Pinterest describes Rich Pins: Rich Pins show metadata right on the Pin itself, giving Pinners a richer experience and increasing engagement. Information in a Rich Pin is independent of the Pin description, ensuring that important information is always tied to the Pin.

How do I install rich pins? ›

How to get Rich Pins for your site
  1. Enable Open Graph in our plugin.
  2. Enter a URL to a page or post that contains rich pin data.
  3. Choose 'HTML tags' and click 'Apply Now'. The validator will run and you will see a validation confirmation and apply now link. ...
  4. You will see a confirmation that your application was processed.

Why are my rich pins not working on Etsy? ›

If you are experiencing issues with Rich Pins, try plugging in your marked up web page URL into our rich Pin Validator to identify the problem or fetch new data for your Pin. Also, make sure your domain/host isn't blocking the Pinterest Crawler, as doing so will prevent you from creating rich Pins.

Why use rich pins? ›

Rich pins make your content more searchable: The extra information included allows you to appear for more keywords. Rich pins help your business look more professional: Insightful information about product features and price make a company more trustworthy.

What do rich pins consist of on Pinterest? ›

Rich Pins. A rich Pin is a type of Pin that automatically syncs information from your website to your Pins. There are three types of rich Pins: Recipe Pins add a title, serving size, cook time, ratings, diet preference and a list of ingredients to recipes that you save from your site.

How many posts per day should I publish on my blog? ›

According to Google 2022 updates, a minimum of 24 blog posts every day can boost the traffic by 30%, while more than 50 posts per day can boost the organic traffic by at least 77%.

How many blog posts should I write before launching? ›

You should have somewhere between 10 to 15 posts ready before launching your blog in order to bring in meaningful traffic. Of course, that's just to start your blog. To build a decent following and sustain good traffic, you need to keep adding new blog content regularly.

How often should a blogger post? ›

The ideal blogging frequency to build brand awareness for small blogs is 1-2 times a week with new posts. The ideal blogging frequency to build brand awareness for large blogs is 3-4 times a week with new and updated posts.

What are the four kinds of rich pins that Pinterest offers? ›

The priority of Rich Pin data is:
  • Product Pins.
  • Recipe Pins.
  • Article Pins.

How do I create a product pin? ›

Tag products in a new Pin

Tap the add icon to select products to tag your Pin with: Search Pins: Search by product name. Use a link: Provide a link to product page on a retailer site and automatically create a new product Pin.

What are fancy pins called? ›

Lapel pins can be ornamental or can indicate the wearer's affiliation with a cause or an organization, such as a fraternal order or religious order; in the case of a chivalric order, the lapel pin is in the form of a rosette. Before the popularity of wearing lapel pins, boutonnières were worn.

How do I pin a recipe on Pinterest? ›

To get started, log into your Pinterest account. Once you're in, head to the menu and select “Create Pin.” Next, upload a mouthwatering image of your recipe and fill in the details. Craft a pin title and pin description that captures the essence of your dish.

What does it mean to pin a recipe? ›

Recipe Rich Pins are every food blogger's bread and butter. They're designed to help users showcase recipes published on Pinterest in a way that's easily digestible by your audience. You can showcase the recipe's title, rating, ingredients, and serving size.

Top Articles
Latest Posts
Article information

Author: Delena Feil

Last Updated:

Views: 5750

Rating: 4.4 / 5 (45 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Delena Feil

Birthday: 1998-08-29

Address: 747 Lubowitz Run, Sidmouth, HI 90646-5543

Phone: +99513241752844

Job: Design Supervisor

Hobby: Digital arts, Lacemaking, Air sports, Running, Scouting, Shooting, Puzzles

Introduction: My name is Delena Feil, I am a clean, splendid, calm, fancy, jolly, bright, faithful person who loves writing and wants to share my knowledge and understanding with you.