Skip to content
  • Home
  • PluginsExpand
    • WP Recipe Maker
    • WP Ultimate Post Grid
    • Easy Affiliate Links
    • Easy Image Collage
    • All-Access Pass
  • FAQ & Support
  • About Us
  • Blog
  • Your Account
Bootstrapped Ventures Knowledge Base
  • Get the Plugin
  • DocumentationExpand
    • WP Recipe Maker
    • WP Ultimate Post Grid
    • Easy Affiliate Links
    • Visual Link Preview
    • Custom Related Posts
  • Open a Support Ticket
Bootstrapped Ventures Knowledge Base

Getting Started

10
  • WP Recipe Maker 101
  • Installing WP Recipe Maker
  • Activating your license key
  • Updating WP Recipe Maker
  • An overview of WP Recipe Maker
  • Creating a recipe
  • Editing a recipe
  • Filling in the Recipe Fields
  • Managing Recipes
  • Recipes and their Parent Post, Page or Custom Post Type

Video Tutorials

10
  • An overview of WP Recipe Maker
  • Displaying recipes in a grid or index
  • Template Editor
  • Taxonomy Term Images
  • Share Buttons
  • Adding a Grow.me Button
  • Nutrition Label
  • Translation API
  • Recipe Collections
  • Add Recipe to collections through Link

SEO & Metadata

8
  • Recipe Metadata for SEO
  • Metadata for Guided Recipes
  • Metadata for How-to Instructions
  • Recipe Metadata Checker
  • ItemList metadata for Recipe Roundup posts
  • ItemList Metadata for Archive Pages
  • Health Check
  • Pinterest Rich Pins

Template Editor

1
  • Template Editor
  • Features
    • Mobile Friendly Templates
    • Recipe Snippets Template
    • Using a different template for a recipe
    • List Checkboxes
    • Recipe placeholders you can use
    • Using conditions in the recipe template
    • Adding text, HTML or 3rd party shortcodes
  • How-To
    • Changing template colors
    • Changing template fonts
    • Changing template labels
    • Changing recipe image size
    • Changing instruction image size and alignment
    • Changing ingredient and instruction list styles
    • Changing the star rating color
    • Changing the adjustable servings display mode
    • Changing the Unit Conversion style
    • Changing the nutrition label​ style
    • Adding a Call to Action
    • Adding the Recipe Pin button
    • Removing the Recipe Video
    • Using smooth scroll for the Jump to Recipe button
    • Removing the Print Recipe button from the snippet at the top of a post

Nutrition Facts

5
  • Nutrition Label
  • Nutrition Facts Calculation
  • Custom Nutrition Ingredients
  • Custom and Calculated Nutrients
  • Translation API

Recipe Collections

5
  • Recipe Collections
  • Using the Recipe Collections
  • Saved Recipe Collection
  • Quick Access Shopping List
  • Displaying the Recipe Collections feature
  • Features
    • Ingredient Groups for the Shopping List
    • Add to Recipe Collection button
    • Changing the Recipe Collections layout
    • Use custom recipes, ingredients and notes in your collections
    • Display nutrition facts per column for your collections
    • Add Collections through Link
    • Setting default collections for new users
    • Quick add pre-made collections
    • Starter Templates for Collections
    • Add Recipe to collections through Link
    • Show the Shopping List for a Saved Collection
    • Restricting access to the Recipe Collections feature
    • Viewing and editing Recipe Collections of your users
    • Altering the Recipe Collections search with WP Extended Search

Import & Export

7
  • Importing recipes from other plugins
  • Custom Recipe Importer
  • Import recipe from text
  • Import Recipes from JSON
  • Export Recipes to JSON
  • JSON import and export for Taxonomy Terms
  • Import recipes from the Paprika Recipe Manager app
  • Importing from Plugins
    • Import from Tasty Recipes
    • Import from WP Delicious
    • Import from Create by Mediavine
    • Import from Recipe Card Blocks by WPZOOM
    • Import from WP Ultimate Recipe
    • Import from EasyRecipe
    • Import from Meal Planner Pro
    • Import from BigOven
    • Import from Ziplist
    • Import from Yummly
    • Import from Recipe Card
    • Import from FoodiePress
    • Import from Cooked
    • Import from Cookbook
    • Import from Simple Recipe Pro
    • Import from Purr Recipe Plugin
    • Import from Recipes by Simmer
    • Import from WordPress.com Shortcode
    • Import from Recipes Generator

Integrations

14
  • Displaying recipes in a grid or index
  • Easy Affiliate Links Integration
  • How to use this for a multilingual blog
  • Clickable images for Lightbox integration
  • Google AMP Compatible
  • Google Analytics 4 Event Tracking
  • Link Amazon Products to Equipment
  • SmartWithFood Shoppable Recipes
  • Shop with Instacart Button
  • Shop with Walmart Button
  • Chicory In-Recipe Ads and Shoppable Button
  • Adding a Grow.me Button
  • Adding a Slickstream Favorites button
  • What theme do you recommend for WPRM?

WP Recipe Maker FAQ

6
  • Translating text in the plugin
  • Automatic archive pages for taxonomy terms
  • Using fractions for ingredient amounts
  • Can I add more diet terms?
  • Setting your own YouTube Data API key
  • How to disable pinning for recipe images

Common Issues

10
  • Recipes Don’t Have the Correct Parent Post
  • API Status
  • Google is sending me Recipe Metadata Warnings
  • Missing field “aggregateRating” in metadata
  • Prevent CLS issues
  • 403 Forbidden Error
  • Cloudflare Firewall Issues
  • Error message when saving a recipe
  • The recipe video is not displaying inside of the recipe card
  • Empty recipe after saving

WPRM for Developers

11
  • The Recipe Post Type
  • Recipe Shortcodes
  • Access recipes in a post via code
  • Show default WordPress UI for taxonomies
  • Using the Recipe Object for front-end changes
  • Plugin hooks and filters
  • WordPress REST API
  • Custom Recipe Importer
  • How themes can style WP Recipe Maker
  • Create your own template
  • Adding your own SVG icons for the Template Editor

Announcements

9
  • WP Recipe Maker Changelog
  • Version 9.4.1 – About those recipe ratings
  • Version 5.6.0 – Some highly anticipated features!
  • Version 5.3.0 – All about the Nutrients
  • Version 5.2.0 – How-to recipes and more!
  • Version 5.0.0 – Introducing a new User Interface
  • Version 4.0.4 – Changing the look of the Cutout template
  • Migrating from Legacy to Modern mode
  • What about WP Ultimate Recipe?

Debugging Plugin Issues

4
  • Debugging plugin problems
  • The downloaded plugin is not a zip archive
  • Flushing permalinks to fix 404 errors
  • Creating a Temporary Login
View Categories
  • Home
  • Documentation
  • WP Recipe Maker
  • WPRM for Developers

WordPress REST API

Recipes are a custom post type called wprm_recipe with regular taxonomies and custom fields associated with it. Because of that, they are accessible to the default WordPress endpoints for post types and taxonomies. You can learn more in the WordPress REST API Handbook.

Recipes in the REST API

Recipes are accessible through the WordPress REST API at the /wprm_recipe/ endpoint.

To read, send a GET request to the /wprm_recipe/<id> endpoint:
https://demo.wprecipemaker.com/wp-json/wp/v2/wprm_recipe/41

For creating a recipe, send a POST request to the /wprm_recipe/ endpoint and include that same kind of recipe array in the JSON body:

{
  "recipe": {
        "name": "My New REST API Recipe",
        "summary": "Delicious and not created in a traditional way."
  }
}

For updating you’d do the same, but send a PUT request to the correct /wprm_recipe/<id> endpoint.

Check out this example JSON payload that fills out the recipe similar to how it’s structured in the regular UI:
https://help.bootstrapped.ventures/wp-content/uploads/2025/03/REST-API-Recipe.json

Recipe Ratings in the REST API

Ratings are accessible through the WordPress REST API at the /wp-recipe-maker/v1/rating/ endpoint by any user with the moderate_comments capability.

To read a rating, send a GET request to the /rating/<id> endpoint:
https://bootstrapped.ventures/wp-json/wp-recipe-maker/v1/rating/123

For creating a rating, send a POST request to the /rating/ endpoint and include the rating array in the JSON body.

{
  "rating": {
    "date": "2018-04-17 12:57:39",
    "comment_id": "22",
    "user_id": "0",
    "ip": "123.321.123.321",
    "rating": "3"
  }
}

The system will automatically update ratings if a particular IP/user/comment has already rated a particular recipe.

/rating/recipe/<id> and /rating/comment/<id> endpoints are available as well.

User Ratings Modal in the Premium Plugin

With the Premium, Pro and Elite bundle, you also have the /user-rating/<recipe_id> endpoint available, which can be used to create a rating with or without comment text, as if it came from the user ratings modal.

You can do a POST request to the /user-rating/<recipe_id> endpoint (make sure to change <recipe_id> to the ID of the recipe you want to add a rating for) and pass along the following data:

{
  "data": {
    "post_id": "123",
    "rating": "3"
    "comment": "Optional Comment Text",
    "name": "Optional Name",
    "email": "Optional Email",
  }
}

post_id could be left blank as well, as it is only used if no parent post for the recipe is set. So only the rating parameter is actually required. Take note that for the comment, name and email it will check whether those are required on the WP Recipe Maker > Settings > Star Ratings > User Ratings Requirements page.

Updated on March 26, 2025
Plugin hooks and filtersCustom Recipe Importer
Table of Contents
  • Recipes in the REST API
  • Recipe Ratings in the REST API
  • User Ratings Modal in the Premium Plugin

© 2025 Bootstrapped Ventures · BE0634.767.406
Privacy Policy

  • Bootstrapped Ventures
  • Plugins
    • WP Recipe Maker
      • Demo
      • Documentation
      • Get the Plugin
    • WP Ultimate Post Grid
    • Easy Affiliate Links
    • Easy Image Collage
    • All-Access Pass
  • FAQ & Support
    • Knowledge Base
    • Documentation
  • About Us
  • Blog
  • Your Account