Recipe Card Blocks PRO allows you to export all your recipes in three formats: WordPress XML, JSON, and CSV. Each format serves a different purpose depending on your needs.
To access the export feature, navigate to Recipe Cards > Import & Export > Export Recipes in your WordPress dashboard.
The WordPress XML export is the best option when you want to migrate recipes from one WordPress site to another. This is a lossless export โ it preserves every detail of your recipes including:
How to use it:
Note: This exports only recipes (the wpzoom_rcb post type). If you want to export all site content including posts, pages, and recipes, use the WordPress Export tool at Tools > Export.
JSON is the best format when you want to:
The JSON export includes structured data for ingredients (with amount, unit, and name as separate fields), ingredient and direction groups, and all recipe metadata.
How to use it:
wpzoom-recipes-YYYY-MM-DD.json will be downloadedExample of the JSON structure:
[
{
"title": "Blueberry Scones with Frosting",
"description": "Light, flaky scones with fresh blueberries.",
"author": "",
"difficulty": "Easy",
"image_url": "https://example.com/scones.jpg",
"ingredients": [
{ "name": "all-purpose flour", "amount": "2", "unit": "cups", "notes": "" },
{ "name": "granulated sugar", "amount": "3", "unit": "tablespoons", "notes": "" },
{ "group": "Buttermilk Glaze" },
{ "name": "powdered sugar", "amount": "1 1/2", "unit": "cups", "notes": "" }
],
"instructions": [
"Line a baking sheet with parchment paper.",
"Mix the dry ingredients in a large bowl.",
{ "group": "Assembly" },
"Shape and bake at 425 for 18 minutes."
],
"equipment": ["Baking Sheet", "Mixing Bowl"],
"notes": ["Do not over-mix the dough."],
"prep_time": "15",
"cook_time": "18",
"servings": "8",
"servings_unit": "servings",
"course": "Dessert",
"cuisine": "American",
"keywords": "scones, blueberry, baking",
"nutrition_calories": "268",
"nutrition_carbs": "36",
"nutrition_protein": "3",
"nutrition_fat": "12"
}
]
CSV is the best format when you want to:
In the CSV format:
--- prefix (e.g., --- Buttermilk Glaze)2 cups all-purpose flour)How to use it:
wpzoom-recipes-YYYY-MM-DD.csv will be downloadedSee also:
How to Import Recipes from CSV or JSON
How to Import Recipes from WP Recipe Maker