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

Recipe Rich Pins for Blogger? ›

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 to create recipe rich pins? ›

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.

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 to make Pinterest pins for a blog? ›

Click the red plus where it says, 'create pin', in the top left. Next click to upload the picture. Then, on the right-hand side, add your description and destination link (i.e. the blog post URL you'd like the pin to link to).

Is Pinterest good for bloggers? ›

Using Pinterest for blogging is an excellent opportunity to drive traffic to and from the platform! Driving traffic from Pinterest to your blog involves strategically optimizing your pins with the right links and ensuring your website is Pinterest-friendly.

How do food bloggers create recipes? ›

Many recipe developers find ideas:
  1. In cookbooks or magazines.
  2. Through recipes on other food blogs.
  3. From family recipes.
  4. At local restaurants or bakeries.
  5. While traveling.
  6. From new ingredients or seasonal produce at a farmers market.
  7. On Pinterest.
  8. While watching cooking shows.
Jun 9, 2022

What does a rich pin look like? ›

Rich Pins are a type of organic Pin that automatically sync information from your website to your Pins. You can identify Rich Pins by the extra information above and below the image on a closeup and the bold title in your feed. If something changes on the original website, the Rich Pin updates to reflect that change.

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.

Does Pinterest pay you for pins? ›

Yes, an individual can make money with a variety of Pinterest strategies, including promoting pins for other brands, posting affiliate links, and advertising your brand through idea pins and product-rich pins.

Do bloggers make money on Pinterest? ›

If you are a blogger, influencer, or e-commerce business, there are many ways to make money on Pinterest, and which strategies work best depends on your business and strategy. One of the best ways to make money on Pinterest is to promote your products by posting Pins.

How many pins should I make per blog post? ›

Create 3-5 different pins for each blog post you publish. It's also a good idea to constantly create new pins for old blog posts.

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 are the disadvantages of Pinterest? ›

What Are The Cons Of Pinterest? Some cons of Pinterest include copyright issues, high competition for visibility, and the potential for addiction. Additionally, the algorithm can make it challenging to reach a wider audience. Furthermore, it may not be effective for all businesses.

How do I use Pinterest for a food blog? ›

Pinterest for Food Bloggers
  1. Optimize your Pinterest profile. ...
  2. Create visually appealing Pins. ...
  3. Use rich Pins: Make your recipes stand out by using Pinterest's rich Pins feature. ...
  4. Craft compelling Pin descriptions: Go beyond just listing ingredients.

Is Pinterest a good side hustle? ›

Pinterest can make a great side hustle if you are passionate about it and learn to master the platform. It takes a bit of work, but in time, you can make serious money. You may even be able to generate passive income by selling templates, Pin designs, and products with affiliate marketing links.

How to create product pins? ›

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 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 to make a custom recipe card? ›

To make a recipe card, follow these key steps:
  1. Write the recipe's name.
  2. List the required ingredients with exact measurements.
  3. Clearly identify instructions for preparation and serving size.
  4. Include an image of the product.
Nov 9, 2023

References

Top Articles
Latest Posts
Article information

Author: Frankie Dare

Last Updated:

Views: 5956

Rating: 4.2 / 5 (53 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Frankie Dare

Birthday: 2000-01-27

Address: Suite 313 45115 Caridad Freeway, Port Barabaraville, MS 66713

Phone: +3769542039359

Job: Sales Manager

Hobby: Baton twirling, Stand-up comedy, Leather crafting, Rugby, tabletop games, Jigsaw puzzles, Air sports

Introduction: My name is Frankie Dare, I am a funny, beautiful, proud, fair, pleasant, cheerful, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.