| 1 |
<?php // phpcs:ignore Internal.NoCodeFound ?> |
| 2 |
{{schema name="yoast/recipe"}} |
| 3 |
{ |
| 4 |
"@type": "Recipe", |
| 5 |
"@id": "{{block-id}}", |
| 6 |
"mainEntityOfPage": { |
| 7 |
"@id": "%%main_schema_id%%" |
| 8 |
}, |
| 9 |
"image": {{inner-blocks-id allowed-blocks=[ "core/image" ] only-first=true null-when-empty=true }}, |
| 10 |
"name": {{inner-blocks-html blocks={ "yoast/recipe-name": "name" } null-when-empty=true allowed-tags=[ "h1","h2","h3","h4","h5","h6","br","a","p","b","strong","i","em", "ul", "ol", "li" ] }}, |
| 11 |
"author": { |
| 12 |
"@id": "%%author_id%%" |
| 13 |
}, |
| 14 |
"description": {{inner-blocks-html blocks={ "yoast/recipe-description": "description" } null-when-empty=true allowed-tags=[ "h1","h2","h3","h4","h5","h6","br","a","p","b","strong","i","em" ] }}, |
| 15 |
"cookTime": {{inner-blocks allowed-blocks=[ "yoast/cooking-time" ] only-first=true }}, |
| 16 |
"prepTime": {{inner-blocks allowed-blocks=[ "yoast/preparation-time" ] only-first=true }}, |
| 17 |
"recipeInstructions": {{inner-blocks allowed-blocks=[ "yoast/recipe-instructions" ] only-first=true }}, |
| 18 |
"recipeIngredient": {{inner-blocks allowed-blocks=[ "yoast/recipe-ingredients" ] only-first=true }}, |
| 19 |
"recipeYield": {{attribute name="yield" }} |
| 20 |
} |
| 21 |
|