1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
|
<!DOCTYPE html>
<html lang="en-US">
<head ><meta charset="UTF-8" /><script>if(navigator.userAgent.match(/MSIE|Internet Explorer/i)||navigator.userAgent.match(/Trident\/7\..*?rv:11/i)){var href=document.location.href;if(!href.match(/[?&]nowprocket/)){if(href.indexOf("?")==-1){if(href.indexOf("#")==-1){document.location.href=href+"?nowprocket=1"}else{document.location.href=href.replace("#","?nowprocket=1#")}}else{if(href.indexOf("#")==-1){document.location.href=href+"&nowprocket=1"}else{document.location.href=href.replace("#","&nowprocket=1#")}}}}</script><script>(()=>{class RocketLazyLoadScripts{constructor(){this.v="2.0.2",this.userEvents=["keydown","keyup","mousedown","mouseup","mousemove","mouseover","mouseenter","mouseout","mouseleave","touchmove","touchstart","touchend","touchcancel","wheel","click","dblclick","input","visibilitychange"],this.attributeEvents=["onblur","onclick","oncontextmenu","ondblclick","onfocus","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onmousewheel","onscroll","onsubmit"]}async t(){this.i(),this.o(),/iP(ad|hone)/.test(navigator.userAgent)&&this.h(),this.u(),this.l(this),this.m(),this.k(this),this.p(this),this._(),await Promise.all([this.R(),this.L()]),this.lastBreath=Date.now(),this.S(this),this.P(),this.D(),this.O(),this.M(),await this.C(this.delayedScripts.normal),await this.C(this.delayedScripts.defer),await this.C(this.delayedScripts.async),this.T("domReady"),await this.F(),await this.j(),await this.I(),this.T("windowLoad"),await this.A(),window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this.everythingLoaded=!0,this.lastTouchEnd&&await new Promise((t=>setTimeout(t,500-Date.now()+this.lastTouchEnd))),this.H(),this.T("all"),this.U(),this.W()}i(){this.CSPIssue=sessionStorage.getItem("rocketCSPIssue"),document.addEventListener("securitypolicyviolation",(t=>{this.CSPIssue||"script-src-elem"!==t.violatedDirective||"data"!==t.blockedURI||(this.CSPIssue=!0,sessionStorage.setItem("rocketCSPIssue",!0))}),{isRocket:!0})}o(){window.addEventListener("pageshow",(t=>{this.persisted=t.persisted,this.realWindowLoadedFired=!0}),{isRocket:!0}),window.addEventListener("pagehide",(()=>{this.onFirstUserAction=null}),{isRocket:!0})}h(){let t;function e(e){t=e}window.addEventListener("touchstart",e,{isRocket:!0}),window.addEventListener("touchend",(function i(o){Math.abs(o.changedTouches[0].pageX-t.changedTouches[0].pageX)<10&&Math.abs(o.changedTouches[0].pageY-t.changedTouches[0].pageY)<10&&o.timeStamp-t.timeStamp<200&&(o.target.dispatchEvent(new PointerEvent("click",{target:o.target,bubbles:!0,cancelable:!0})),event.preventDefault(),window.removeEventListener("touchstart",e,{isRocket:!0}),window.removeEventListener("touchend",i,{isRocket:!0}))}),{isRocket:!0})}q(t){this.userActionTriggered||("mousemove"!==t.type||this.firstMousemoveIgnored?"keyup"===t.type||"mouseover"===t.type||"mouseout"===t.type||(this.userActionTriggered=!0,this.onFirstUserAction&&this.onFirstUserAction()):this.firstMousemoveIgnored=!0),"click"===t.type&&t.preventDefault(),this.savedUserEvents.length>0&&(t.stopPropagation(),t.stopImmediatePropagation()),"touchstart"===this.lastEvent&&"touchend"===t.type&&(this.lastTouchEnd=Date.now()),"click"===t.type&&(this.lastTouchEnd=0),this.lastEvent=t.type,this.savedUserEvents.push(t)}u(){this.savedUserEvents=[],this.userEventHandler=this.q.bind(this),this.userEvents.forEach((t=>window.addEventListener(t,this.userEventHandler,{passive:!1,isRocket:!0})))}U(){this.userEvents.forEach((t=>window.removeEventListener(t,this.userEventHandler,{passive:!1,isRocket:!0}))),this.savedUserEvents.forEach((t=>{t.target.dispatchEvent(new window[t.constructor.name](t.type,t))}))}m(){this.eventsMutationObserver=new MutationObserver((t=>{const e="return false";for(const i of t){if("attributes"===i.type){const t=i.target.getAttribute(i.attributeName);t&&t!==e&&(i.target.setAttribute("data-rocket-"+i.attributeName,t),i.target.setAttribute(i.attributeName,e))}"childList"===i.type&&i.addedNodes.forEach((t=>{if(t.nodeType===Node.ELEMENT_NODE)for(const i of t.attributes)this.attributeEvents.includes(i.name)&&i.value&&""!==i.value&&(t.setAttribute("data-rocket-"+i.name,i.value),t.setAttribute(i.name,e))}))}})),this.eventsMutationObserver.observe(document,{subtree:!0,childList:!0,attributeFilter:this.attributeEvents})}H(){this.eventsMutationObserver.disconnect(),this.attributeEvents.forEach((t=>{document.querySelectorAll("[data-rocket-"+t+"]").forEach((e=>{e.setAttribute(t,e.getAttribute("data-rocket-"+t)),e.removeAttribute("data-rocket-"+t)}))}))}k(t){Object.defineProperty(HTMLElement.prototype,"onclick",{get(){return this.rocketonclick},set(e){this.rocketonclick=e,this.setAttribute(t.everythingLoaded?"onclick":"data-rocket-onclick","this.rocketonclick(event)")}})}S(t){function e(e,i){let o=e[i];e[i]=null,Object.defineProperty(e,i,{get:()=>o,set(s){t.everythingLoaded?o=s:e["rocket"+i]=o=s}})}e(document,"onreadystatechange"),e(window,"onload"),e(window,"onpageshow");try{Object.defineProperty(document,"readyState",{get:()=>t.rocketReadyState,set(e){t.rocketReadyState=e},configurable:!0}),document.readyState="loading"}catch(t){console.log("WPRocket DJE readyState conflict, bypassing")}}l(t){this.originalAddEventListener=EventTarget.prototype.addEventListener,this.originalRemoveEventListener=EventTarget.prototype.removeEventListener,this.savedEventListeners=[],EventTarget.prototype.addEventListener=function(e,i,o){o&&o.isRocket||!t.B(e,this)&&!t.userEvents.includes(e)||t.B(e,this)&&!t.userActionTriggered||e.startsWith("rocket-")?t.originalAddEventListener.call(this,e,i,o):t.savedEventListeners.push({target:this,remove:!1,type:e,func:i,options:o})},EventTarget.prototype.removeEventListener=function(e,i,o){o&&o.isRocket||!t.B(e,this)&&!t.userEvents.includes(e)||t.B(e,this)&&!t.userActionTriggered||e.startsWith("rocket-")?t.originalRemoveEventListener.call(this,e,i,o):t.savedEventListeners.push({target:this,remove:!0,type:e,func:i,options:o})}}T(t){"all"===t&&(EventTarget.prototype.addEventListener=this.originalAddEventListener,EventTarget.prototype.removeEventListener=this.originalRemoveEventListener),this.savedEventListeners=this.savedEventListeners.filter((e=>{let i=e.type,o=e.target||window;return"domReady"===t&&"DOMContentLoaded"!==i&&"readystatechange"!==i||("windowLoad"===t&&"load"!==i&&"readystatechange"!==i&&"pageshow"!==i||(this.B(i,o)&&(i="rocket-"+i),e.remove?o.removeEventListener(i,e.func,e.options):o.addEventListener(i,e.func,e.options),!1))}))}p(t){let e;function i(e){return t.everythingLoaded?e:e.split(" ").map((t=>"load"===t||t.startsWith("load.")?"rocket-jquery-load":t)).join(" ")}function o(o){function s(e){const s=o.fn[e];o.fn[e]=o.fn.init.prototype[e]=function(){return this[0]===window&&t.userActionTriggered&&("string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=i(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach((t=>{const e=arguments[0][t];delete arguments[0][t],arguments[0][i(t)]=e}))),s.apply(this,arguments),this}}if(o&&o.fn&&!t.allJQueries.includes(o)){const e={DOMContentLoaded:[],"rocket-DOMContentLoaded":[]};for(const t in e)document.addEventListener(t,(()=>{e[t].forEach((t=>t()))}),{isRocket:!0});o.fn.ready=o.fn.init.prototype.ready=function(i){function s(){parseInt(o.fn.jquery)>2?setTimeout((()=>i.bind(document)(o))):i.bind(document)(o)}return t.realDomReadyFired?!t.userActionTriggered||t.fauxDomReadyFired?s():e["rocket-DOMContentLoaded"].push(s):e.DOMContentLoaded.push(s),o([])},s("on"),s("one"),s("off"),t.allJQueries.push(o)}e=o}t.allJQueries=[],o(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>e,set(t){o(t)}})}P(){const t=new Map;document.write=document.writeln=function(e){const i=document.currentScript,o=document.createRange(),s=i.parentElement;let n=t.get(i);void 0===n&&(n=i.nextSibling,t.set(i,n));const a=document.createDocumentFragment();o.setStart(a,0),a.appendChild(o.createContextualFragment(e)),s.insertBefore(a,n)}}async R(){return new Promise((t=>{this.userActionTriggered?t():this.onFirstUserAction=t}))}async L(){return new Promise((t=>{document.addEventListener("DOMContentLoaded",(()=>{this.realDomReadyFired=!0,t()}),{isRocket:!0})}))}async I(){return this.realWindowLoadedFired?Promise.resolve():new Promise((t=>{window.addEventListener("load",t,{isRocket:!0})}))}M(){this.pendingScripts=[];this.scriptsMutationObserver=new MutationObserver((t=>{for(const e of t)e.addedNodes.forEach((t=>{"SCRIPT"!==t.tagName||t.noModule||t.isWPRocket||this.pendingScripts.push({script:t,promise:new Promise((e=>{const i=()=>{const i=this.pendingScripts.findIndex((e=>e.script===t));i>=0&&this.pendingScripts.splice(i,1),e()};t.addEventListener("load",i,{isRocket:!0}),t.addEventListener("error",i,{isRocket:!0}),setTimeout(i,1e3)}))})}))})),this.scriptsMutationObserver.observe(document,{childList:!0,subtree:!0})}async j(){await this.J(),this.pendingScripts.length?(await this.pendingScripts[0].promise,await this.j()):this.scriptsMutationObserver.disconnect()}D(){this.delayedScripts={normal:[],async:[],defer:[]},document.querySelectorAll("script[type$=rocketlazyloadscript]").forEach((t=>{t.hasAttribute("data-rocket-src")?t.hasAttribute("async")&&!1!==t.async?this.delayedScripts.async.push(t):t.hasAttribute("defer")&&!1!==t.defer||"module"===t.getAttribute("data-rocket-type")?this.delayedScripts.defer.push(t):this.delayedScripts.normal.push(t):this.delayedScripts.normal.push(t)}))}async _(){await this.L();let t=[];document.querySelectorAll("script[type$=rocketlazyloadscript][data-rocket-src]").forEach((e=>{let i=e.getAttribute("data-rocket-src");if(i&&!i.startsWith("data:")){i.startsWith("//")&&(i=location.protocol+i);try{const o=new URL(i).origin;o!==location.origin&&t.push({src:o,crossOrigin:e.crossOrigin||"module"===e.getAttribute("data-rocket-type")})}catch(t){}}})),t=[...new Map(t.map((t=>[JSON.stringify(t),t]))).values()],this.N(t,"preconnect")}async $(t){if(await this.G(),!0!==t.noModule||!("noModule"in HTMLScriptElement.prototype))return new Promise((e=>{let i;function o(){(i||t).setAttribute("data-rocket-status","executed"),e()}try{if(navigator.userAgent.includes("Firefox/")||""===navigator.vendor||this.CSPIssue)i=document.createElement("script"),[...t.attributes].forEach((t=>{let e=t.nodeName;"type"!==e&&("data-rocket-type"===e&&(e="type"),"data-rocket-src"===e&&(e="src"),i.setAttribute(e,t.nodeValue))})),t.text&&(i.text=t.text),t.nonce&&(i.nonce=t.nonce),i.hasAttribute("src")?(i.addEventListener("load",o,{isRocket:!0}),i.addEventListener("error",(()=>{i.setAttribute("data-rocket-status","failed-network"),e()}),{isRocket:!0}),setTimeout((()=>{i.isConnected||e()}),1)):(i.text=t.text,o()),i.isWPRocket=!0,t.parentNode.replaceChild(i,t);else{const i=t.getAttribute("data-rocket-type"),s=t.getAttribute("data-rocket-src");i?(t.type=i,t.removeAttribute("data-rocket-type")):t.removeAttribute("type"),t.addEventListener("load",o,{isRocket:!0}),t.addEventListener("error",(i=>{this.CSPIssue&&i.target.src.startsWith("data:")?(console.log("WPRocket: CSP fallback activated"),t.removeAttribute("src"),this.$(t).then(e)):(t.setAttribute("data-rocket-status","failed-network"),e())}),{isRocket:!0}),s?(t.fetchPriority="high",t.removeAttribute("data-rocket-src"),t.src=s):t.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(t.text)))}}catch(i){t.setAttribute("data-rocket-status","failed-transform"),e()}}));t.setAttribute("data-rocket-status","skipped")}async C(t){const e=t.shift();return e?(e.isConnected&&await this.$(e),this.C(t)):Promise.resolve()}O(){this.N([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}N(t,e){this.trash=this.trash||[];let i=!0;var o=document.createDocumentFragment();t.forEach((t=>{const s=t.getAttribute&&t.getAttribute("data-rocket-src")||t.src;if(s&&!s.startsWith("data:")){const n=document.createElement("link");n.href=s,n.rel=e,"preconnect"!==e&&(n.as="script",n.fetchPriority=i?"high":"low"),t.getAttribute&&"module"===t.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),t.crossOrigin&&(n.crossOrigin=t.crossOrigin),t.integrity&&(n.integrity=t.integrity),t.nonce&&(n.nonce=t.nonce),o.appendChild(n),this.trash.push(n),i=!1}})),document.head.appendChild(o)}W(){this.trash.forEach((t=>t.remove()))}async F(){try{document.readyState="interactive"}catch(t){}this.fauxDomReadyFired=!0;try{await this.G(),document.dispatchEvent(new Event("rocket-readystatechange")),await this.G(),document.rocketonreadystatechange&&document.rocketonreadystatechange(),await this.G(),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this.G(),window.dispatchEvent(new Event("rocket-DOMContentLoaded"))}catch(t){console.error(t)}}async A(){try{document.readyState="complete"}catch(t){}try{await this.G(),document.dispatchEvent(new Event("rocket-readystatechange")),await this.G(),document.rocketonreadystatechange&&document.rocketonreadystatechange(),await this.G(),window.dispatchEvent(new Event("rocket-load")),await this.G(),window.rocketonload&&window.rocketonload(),await this.G(),this.allJQueries.forEach((t=>t(window).trigger("rocket-jquery-load"))),await this.G();const t=new Event("rocket-pageshow");t.persisted=this.persisted,window.dispatchEvent(t),await this.G(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}catch(t){console.error(t)}}async G(){Date.now()-this.lastBreath>45&&(await this.J(),this.lastBreath=Date.now())}async J(){return document.hidden?new Promise((t=>setTimeout(t))):new Promise((t=>requestAnimationFrame(t)))}B(t,e){return e===document&&"readystatechange"===t||(e===document&&"DOMContentLoaded"===t||(e===window&&"DOMContentLoaded"===t||(e===window&&"load"===t||e===window&&"pageshow"===t)))}static run(){(new RocketLazyLoadScripts).t()}}RocketLazyLoadScripts.run()})();</script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script data-no-optimize="1" data-cfasync="false">!function(){"use strict";function e(e){const t=e.match(/((?=([a-z0-9._!#$%+^&*()[\]<>-]+))\2@[a-z0-9._-]+\.[a-z0-9._-]+)/gi);return t?t[0]:""}function t(t){return e(a(t.toLowerCase()))}function a(e){return e.replace(/\s/g,"")}async function n(e){const t={sha256Hash:"",sha1Hash:""};if(!("msCrypto"in window)&&"https:"===location.protocol&&"crypto"in window&&"TextEncoder"in window){const a=(new TextEncoder).encode(e),[n,c]=await Promise.all([s("SHA-256",a),s("SHA-1",a)]);t.sha256Hash=n,t.sha1Hash=c}return t}async function s(e,t){const a=await crypto.subtle.digest(e,t);return Array.from(new Uint8Array(a)).map(e=>("00"+e.toString(16)).slice(-2)).join("")}function c(e){let t=!0;return Object.keys(e).forEach(a=>{0===e[a].length&&(t=!1)}),t}function i(e,t,a){e.splice(t,1);const n="?"+e.join("&")+a.hash;history.replaceState(null,"",n)}var o={checkEmail:e,validateEmail:t,trimInput:a,hashEmail:n,hasHashes:c,removeEmailAndReplaceHistory:i,detectEmails:async function(){const e=new URL(window.location.href),a=Array.from(e.searchParams.entries()).map(e=>`${e[0]}=${e[1]}`);let s,o;const r=["adt_eih","sh_kit"];if(a.forEach((e,t)=>{const a=decodeURIComponent(e),[n,c]=a.split("=");if("adt_ei"===n&&(s={value:c,index:t,emsrc:"url"}),r.includes(n)){o={value:c,index:t,emsrc:"sh_kit"===n?"urlhck":"urlh"}}}),s)t(s.value)&&n(s.value).then(e=>{if(c(e)){const t={value:e,created:Date.now()};localStorage.setItem("adt_ei",JSON.stringify(t)),localStorage.setItem("adt_emsrc",s.emsrc)}});else if(o){const e={value:{sha256Hash:o.value,sha1Hash:""},created:Date.now()};localStorage.setItem("adt_ei",JSON.stringify(e)),localStorage.setItem("adt_emsrc",o.emsrc)}s&&i(a,s.index,e),o&&i(a,o.index,e)},cb:"adthrive"};const{detectEmails:r,cb:l}=o;r()}();
</script><style id="pluginthemexcss"></style><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<style></style>
<!-- Hubbub v.2.25.2 https://morehubbub.com/ -->
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Grilled Tacos al Pastor" />
<meta property="og:description" content="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " />
<meta property="og:url" content="https://howtofeedaloon.com/grilled-tacos-al-pastor/" />
<meta property="og:site_name" content="How To Feed A Loon" />
<meta property="og:updated_time" content="2025-05-04T13:07:44+00:00" />
<meta property="article:published_time" content="2025-05-04T13:07:41+00:00" />
<meta property="article:modified_time" content="2025-05-04T13:07:44+00:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Grilled Tacos al Pastor" />
<meta name="twitter:description" content="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " />
<meta class="flipboard-article" content="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " />
<meta property="og:image" content="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead.jpg" />
<meta name="twitter:image" content="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="1800" />
<!-- Hubbub v.2.25.2 https://morehubbub.com/ -->
<style data-no-optimize="1" data-cfasync="false"></style>
<script data-no-optimize="1" data-cfasync="false">
window.adthriveCLS = {
enabledLocations: ['Content', 'Recipe'],
injectedSlots: [],
injectedFromPlugin: true,
branch: '3471352',bucket: 'prod', };
window.adthriveCLS.siteAds = {"betaTester":false,"targeting":[{"value":"59790101d83d246969d21c87","key":"siteId"},{"value":"6233884d5e2be37088ea8d11","key":"organizationId"},{"value":"How To Feed a Loon","key":"siteName"},{"value":"AdThrive Edge","key":"service"},{"value":"on","key":"bidding"},{"value":["Food"],"key":"verticals"}],"siteUrl":"https://www.howtofeedaloon.com","siteId":"59790101d83d246969d21c87","siteName":"How To Feed a Loon","breakpoints":{"tablet":768,"desktop":1024},"cloudflare":null,"adUnits":[{"sequence":9,"targeting":[{"value":["Sidebar"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["desktop"],"name":"Sidebar_9","sticky":true,"location":"Sidebar","dynamic":{"pageSelector":"","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".sidebar-primary","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":".site-footer","adSizes":[[300,250],[160,600],[336,280],[320,50],[300,600],[250,250],[1,1],[320,100],[300,1050],[300,50],[300,420]],"priority":291,"autosize":true},{"sequence":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["desktop"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single","spacing":0,"max":2,"lazyMax":97,"enable":true,"lazy":true,"elementSelector":".entry-content > *:not(h2):not(h3):not(.wprm-recipe-snippet):not(.dpsp-post-pinterest-image-hidden):not(:empty)","skip":4,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":null,"targeting":[{"value":["Content"],"key":"location"}],"devices":["tablet","phone"],"name":"Content","sticky":false,"location":"Content","dynamic":{"pageSelector":"body.single","spacing":0,"max":2,"lazyMax":97,"enable":true,"lazy":true,"elementSelector":".entry-content > *:not(h2):not(h3):not(.wprm-recipe-snippet):not(.dpsp-post-pinterest-image-hidden):not(:empty)","skip":4,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[336,280],[320,50],[468,60],[970,90],[250,250],[1,1],[320,100],[970,250],[1,2],[300,50],[300,300],[552,334],[728,250],[300,250]],"priority":199,"autosize":true},{"sequence":1,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["desktop","tablet"],"name":"Recipe_1","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"body:not(.wprm-print)","spacing":0.82,"max":2,"lazyMax":97,"enable":true,"lazy":true,"elementSelector":".wprm-recipe-ingredients-header, .wprm-recipe-equipment-header, .wprm-recipe-ingredients-container li, .wprm-recipe-instructions-container li, .wprm-recipe-notes-container li, .wprm-recipe-notes-container span, .wprm-recipe-notes-container p, .wprm-nutrition-label-container","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[300,250],[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390]],"priority":-101,"autosize":true},{"sequence":5,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["phone"],"name":"Recipe_5","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"body:not(.wprm-print)","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":".wprm-recipe-ingredients-container","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[300,250],[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390]],"priority":-105,"autosize":true},{"sequence":1,"targeting":[{"value":["Recipe"],"key":"location"}],"devices":["phone"],"name":"Recipe_1","sticky":false,"location":"Recipe","dynamic":{"pageSelector":"body:not(.wprm-print)","spacing":0.8,"max":1,"lazyMax":97,"enable":true,"lazy":true,"elementSelector":".wprm-recipe-instructions-container li, wprm-recipe-instructions-container span, .wprm-recipe-notes-container li, .wprm-recipe-notes-container span, .wprm-recipe-notes-container p, .wprm-nutrition-label-container, .wprm-recipe-ingredient-group","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[300,250],[320,50],[250,250],[1,1],[320,100],[1,2],[300,50],[320,300],[300,390]],"priority":-101,"autosize":true},{"sequence":null,"targeting":[{"value":["Below Post"],"key":"location"}],"devices":["desktop","tablet","phone"],"name":"Below_Post","sticky":false,"location":"Below Post","dynamic":{"pageSelector":"body.single","spacing":0.75,"max":0,"lazyMax":10,"enable":true,"lazy":true,"elementSelector":".comment-respond, .comment-list > li","skip":0,"classNames":[],"position":"beforebegin","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[300,250],[728,90],[336,280],[320,50],[468,60],[250,250],[1,1],[320,100],[970,250],[728,250]],"priority":99,"autosize":true},{"sequence":null,"targeting":[{"value":["Footer"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["desktop","phone","tablet"],"name":"Footer","sticky":true,"location":"Footer","dynamic":{"pageSelector":"","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":"body","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[728,90],[320,50],[468,60],[970,90],[1,1],[320,100],[300,50]],"priority":-1,"autosize":true},{"sequence":null,"targeting":[{"value":["Header"],"key":"location"}],"devices":["desktop","tablet","phone"],"name":"Header","sticky":false,"location":"Header","dynamic":{"pageSelector":"body.wprm-print","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":"#wprm-print-header","skip":0,"classNames":[],"position":"afterend","every":1,"enabled":true},"stickyOverlapSelector":"","adSizes":[[1,1],[300,50],[320,50],[320,100],[468,60],[728,90],[970,90]],"priority":399,"autosize":true},{"sequence":null,"targeting":[{"value":["Sidebar"],"key":"location"},{"value":true,"key":"sticky"}],"devices":["desktop"],"name":"Sidebar","sticky":true,"location":"Sidebar","dynamic":{"pageSelector":"body.wprm-print","spacing":0,"max":1,"lazyMax":null,"enable":true,"lazy":false,"elementSelector":"body.wprm-print","skip":0,"classNames":[],"position":"beforeend","every":1,"enabled":true},"stickyOverlapSelector":".adthrive-footer-message","adSizes":[[160,600],[336,280],[320,50],[300,600],[250,250],[1,1],[320,100],[300,1050],[300,50],[300,420],[300,250]],"priority":299,"autosize":true}],"adDensityLayout":{"mobile":{"adDensity":0.23,"onePerViewport":false},"pageOverrides":[],"desktop":{"adDensity":0.28,"onePerViewport":false}},"adDensityEnabled":true,"siteExperiments":[],"adTypes":{"sponsorTileDesktop":true,"interscrollerDesktop":true,"nativeBelowPostDesktop":true,"miniscroller":true,"largeFormatsMobile":true,"nativeMobileContent":true,"inRecipeRecommendationMobile":true,"nativeMobileRecipe":true,"sponsorTileMobile":true,"expandableCatalogAdsMobile":true,"outstreamMobile":true,"nativeHeaderMobile":true,"inRecipeRecommendationDesktop":true,"nativeDesktopContent":true,"outstreamDesktop":false,"animatedFooter":true,"skylineHeader":false,"expandableFooter":false,"nativeDesktopSidebar":true,"videoFootersMobile":true,"videoFootersDesktop":true,"interscroller":false,"nativeDesktopRecipe":true,"nativeHeaderDesktop":true,"nativeBelowPostMobile":true,"expandableCatalogAdsDesktop":true,"largeFormatsDesktop":true},"adOptions":{"theTradeDesk":true,"rtbhouse":true,"undertone":true,"sidebarConfig":{"dynamicStickySidebar":{"minHeight":1800,"enabled":true,"blockedSelectors":[]}},"footerCloseButton":true,"teads":true,"pmp":true,"thirtyThreeAcross":true,"sharethrough":true,"optimizeVideoPlayersForEarnings":true,"removeVideoTitleWrapper":true,"pubMatic":true,"infiniteScroll":false,"yahoossp":true,"spa":false,"stickyContainerConfig":{"recipeDesktop":{"minHeight":null,"enabled":false},"blockedSelectors":[],"stickyHeaderSelectors":[".feastmobilenavbar"],"content":{"minHeight":250,"enabled":true},"recipeMobile":{"minHeight":null,"enabled":false}},"sonobi":true,"yieldmo":true,"footerSelector":"","amazonUAM":true,"gamMCMEnabled":true,"gamMCMChildNetworkCode":"22638909893","rubicon":true,"conversant":false,"openx":true,"customCreativeEnabled":true,"secColor":"#000000","unruly":true,"mediaGrid":true,"bRealTime":true,"adInViewTime":null,"gumgum":true,"comscoreFooter":true,"desktopInterstitial":false,"footerCloseButtonDesktop":false,"ozone":true,"isAutoOptimized":true,"adform":true,"comscoreTAL":true,"targetaff":false,"bgColor":"#FFFFFF","advancePlaylistOptions":{"playlistPlayer":{"enabled":true},"relatedPlayer":{"enabled":true,"applyToFirst":true}},"kargo":true,"liveRampATS":true,"footerCloseButtonMobile":false,"interstitialBlockedPageSelectors":"","prioritizeShorterVideoAds":true,"allowSmallerAdSizes":true,"wakeLock":{"desktopEnabled":true,"mobileValue":15,"mobileEnabled":true,"desktopValue":30},"mobileInterstitial":false,"tripleLift":true,"sensitiveCategories":["alc","ast","cbd","cosm","dat","gamc","gamv","pol","rel","sst","ssr","srh","ske","tob","wtl"],"liveRamp":true,"adthriveEmailIdentity":true,"criteo":true,"nativo":false,"infiniteScrollOptions":{"selector":"","heightThreshold":0},"siteAttributes":{"mobileHeaderSelectors":[],"desktopHeaderSelectors":[]},"dynamicContentSlotLazyLoading":true,"clsOptimizedAds":true,"ogury":true,"aidem":false,"verticals":["Food"],"inImage":false,"stackadapt":true,"usCMP":{"enabled":false,"regions":[]},"advancePlaylist":true,"flipp":true,"delayLoading":true,"inImageZone":null,"appNexus":true,"rise":true,"liveRampId":"","infiniteScrollRefresh":true,"indexExchange":true},"siteAdsProfiles":[],"videoPlayers":{"contextual":{"autoplayCollapsibleEnabled":false,"overrideEmbedLocation":false,"defaultPlayerType":"static"},"videoEmbed":"wordpress","footerSelector":"","contentSpecificPlaylists":[],"players":[{"playlistId":"KEf9JJef","pageSelector":"body.single","devices":["desktop"],"description":"","skip":0,"title":"LATEST VIDEOS","type":"stickyPlaylist","enabled":true,"formattedType":"Sticky Playlist","elementSelector":".entry-content > .wp-block-image, .entry-content > figure, .entry-content > p:has(img)","id":4088981,"position":"afterend","saveVideoCloseState":false,"shuffle":true,"adPlayerTitle":"MY LATEST VIDEOS","mobileHeaderSelector":null,"playerId":"nYDEq7lL"},{"playlistId":"KEf9JJef","pageSelector":"","devices":["mobile","desktop"],"description":"","skip":0,"title":"Stationary related player - desktop and mobile","type":"stationaryRelated","enabled":true,"formattedType":"Stationary Related","elementSelector":"","id":4088980,"position":"","saveVideoCloseState":false,"shuffle":false,"adPlayerTitle":"Stationary related player - desktop and mobile","playerId":"nYDEq7lL"},{"playlistId":"KEf9JJef","pageSelector":"body.single","devices":["mobile"],"mobileLocation":"top-center","description":"","skip":0,"title":"LATEST VIDEOS","type":"stickyPlaylist","enabled":true,"formattedType":"Sticky Playlist","elementSelector":".entry-content > .wp-block-image, .entry-content > figure, .entry-content > p:has(img)","id":4088982,"position":"afterend","saveVideoCloseState":false,"shuffle":true,"adPlayerTitle":"MY LATEST VIDEOS","mobileHeaderSelector":null,"playerId":"nYDEq7lL"}],"partners":{"theTradeDesk":true,"unruly":true,"mediaGrid":true,"undertone":true,"gumgum":true,"adform":true,"pmp":true,"kargo":true,"thirtyThreeAcross":true,"stickyOutstream":{"desktop":{"enabled":true},"blockedPageSelectors":"","mobileLocation":"bottom-left","allowOnHomepage":true,"mobile":{"enabled":true},"saveVideoCloseState":false,"mobileHeaderSelector":"","allowForPageWithStickyPlayer":{"enabled":true}},"sharethrough":true,"tripleLift":true,"pubMatic":true,"criteo":true,"yahoossp":true,"nativo":false,"aidem":false,"stackadapt":true,"yieldmo":true,"amazonUAM":true,"rubicon":true,"appNexus":true,"rise":true,"openx":true,"indexExchange":true}}};</script>
<script data-no-optimize="1" data-cfasync="false">
(function(w, d) {
w.adthrive = w.adthrive || {};
w.adthrive.cmd = w.adthrive.cmd || [];
w.adthrive.plugin = 'adthrive-ads-3.7.5';
w.adthrive.host = 'ads.adthrive.com';
w.adthrive.integration = 'plugin';
var commitParam = (w.adthriveCLS && w.adthriveCLS.bucket !== 'prod' && w.adthriveCLS.branch) ? '&commit=' + w.adthriveCLS.branch : '';
var s = d.createElement('script');
s.async = true;
s.referrerpolicy='no-referrer-when-downgrade';
s.src = 'https://' + w.adthrive.host + '/sites/59790101d83d246969d21c87/ads.min.js?referrer=' + w.encodeURIComponent(w.location.href) + commitParam + '&cb=' + (Math.floor(Math.random() * 100) + 1) + '';
var n = d.getElementsByTagName('script')[0];
n.parentNode.insertBefore(s, n);
})(window, document);
</script>
<link rel="dns-prefetch" href="https://ads.adthrive.com/"><link rel="preconnect" href="https://ads.adthrive.com/"><link rel="preconnect" href="https://ads.adthrive.com/" crossorigin>
<!-- This site is optimized with the Yoast SEO Premium plugin v25.0 (Yoast SEO v25.0) - https://yoast.com/wordpress/plugins/seo/ -->
<title>Grilled Tacos al Pastor | How To Feed A Loon</title><link rel="preload" data-rocket-preload as="font" href="https://howtofeedaloon.com/wp-content/plugins/tbf-new-tab-icon/app/lib/fontello/font/fontello.woff2?81110214" crossorigin><link rel="preload" data-rocket-preload as="font" href="https://howtofeedaloon.com/wp-content/uploads/omgf/feast-plus-fonts/josefin-sans-normal-latin-700.woff2?ver=1648064490" crossorigin><link rel="preload" data-rocket-preload as="font" href="https://howtofeedaloon.com/wp-content/uploads/omgf/feast-plus-fonts/satisfy-normal-latin-400.woff2?ver=1648064490" crossorigin><style id="wpr-usedcss">html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figure,footer,header,main,nav,section,summary{display:block}progress,video{display:inline-block;vertical-align:baseline}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}small{font-size:80%}img{border:0}svg:not(:root){overflow:hidden}figure{margin:20px 0}code{font-family:monospace,monospace;font-size:1em;white-space:pre-line;box-shadow:1px 1px 3px #ccc;padding:17px;margin:17px 0}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none;font-family:sans-serif}button,html input[type=button],input[type=submit]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*,input[type=search]{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.comment-respond:after,.entry-content:after,.entry:after,.nav-primary:after,.site-container:after,.site-footer:after,.site-header:after,.site-inner:after,.wrap:after{clear:both;content:" ";display:table}body{background:#fff;color:#010101;font-size:18px;font-weight:300;letter-spacing:.5px;line-height:1.8}::-moz-selection{background:#111;color:#fff}::selection{background:#111;color:#fff}a{color:#fb6a4a;text-decoration:none}.single .content a,.site-footer a,aside a{text-decoration:underline}a:focus,a:hover{opacity:.7}nav#breadcrumbs,p{margin:5px 0 15px;padding:0}strong{font-weight:700}ol,ul{margin:0;padding:0}.wp-block-list{padding-left:37px}h1,h2,h3,h4{font-weight:700;line-height:1.3;margin:37px 0 21px;padding:0}h1{font-size:1.8em}h2{font-size:1.625em}h3{font-size:1.375em}h4{font-size:1.125em}embed,iframe,img,object,video{max-width:100%}img{height:auto}input,select,textarea{border:1px solid #eee;-webkit-box-shadow:0 0 0 #fff;-webkit-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff;font-weight:300;letter-spacing:.5px;padding:10px}input:not([type=radio]):not([type=checkbox]),select,textarea{width:100%}input:focus,textarea:focus{outline:0}.button,button,input[type=button],input[type=submit]{background:#010101;border:1px solid #010101;-webkit-box-shadow:none;box-shadow:none;color:#fff;cursor:pointer;font-style:normal;font-weight:700;letter-spacing:2px;padding:7px 17px;text-transform:uppercase;width:auto}input[type=submit]{letter-spacing:2px}.button:focus,.button:hover,button:focus,button:hover,input:focus[type=button],input:focus[type=submit],input:hover[type=button],input:hover[type=submit]{background:#fff;color:#010101}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-results-button{display:none}.site-container{margin:0 auto}.content-sidebar-wrap,.site-inner,.wrap{margin:0 auto;max-width:1170px}.site-inner{background:#fff;margin:0 auto;padding:15px 24px}.content{float:right;width:728px}.content-sidebar .content{float:left}.sidebar-primary{float:right;width:300px;min-width:300px!important}.search-form{background:#fff;border:1px solid #eee;padding:10px}.search-form input{background:var(--wpr-bg-309fcc98-7072-4ffc-8950-8a44ba95e503) center right no-repeat #fff;-webkit-background-size:contain;background-size:contain;border:0;padding:0}.search-form input[type=submit]{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;padding:0;position:absolute;width:1px}.screen-reader-text,.screen-reader-text span{background:#fff;border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;position:absolute!important;width:1px},.genesis-nav-menu .search input[type=submit]:focus,.screen-reader-text:focus{-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;display:block;font-size:1em;font-weight:700;height:auto;padding:15px 23px 14px;text-decoration:none;width:auto;z-index:100000}.entry{margin-bottom:37px}.entry-content ol,.entry-content p,.entry-content ul{margin-bottom:37px}.entry-content>ol li,.entry-content>ul li{margin:0 0 17px 37px}.entry-content ul li{list-style-type:disc}.entry-content ol ol,.entry-content ul ul{margin-bottom:37px}.entry-header{margin:0 0 37px}.entry-meta a{text-decoration:underline}.entry-footer .entry-meta{border-top:1px solid #eee;padding:37px 0}.comment-respond{padding:37px 0}.comment-respond{margin:0 0 37px}.comment-respond input[type=email],.comment-respond input[type=text],.comment-respond input[type=url]{width:50%}.comment-respond label{display:block;margin-right:12px}.comment-list{border-top:1px solid #eee}.comment-list li{list-style-type:none;margin:37px 0 0;padding:0}.comment-list article{padding:17px;overflow:auto;border-bottom:1px solid #f7f7f7}.sidebar li{list-style-type:none;margin-bottom:6px;padding:0;word-wrap:break-word}.sidebar a{font-weight:700}.site-footer{text-align:center}@media only screen and (min-width:1200px){#breadcrumbs,.entry-meta,aside{font-size:.8em}}@media only screen and (max-width:1079px){.content,.sidebar-primary,.site-inner,.wrap{width:100%}.site-inner{padding-left:4%;padding-right:4%}.comment-respond,.entry,.entry-footer .entry-meta,.site-header{padding:10px 0}.entry-footer .entry-meta{margin:0;padding-top:12px}}img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}.adthrive-ad{margin-top:10px;margin-bottom:10px;text-align:center;overflow-x:visible;clear:both;line-height:0}.adthrive-sidebar.adthrive-stuck{margin-top:160px!important}.adthrive-sticky-sidebar>div{top:160px!important}.adthrive-device-desktop .adthrive-recipe,.adthrive-device-tablet .adthrive-recipe{float:right;clear:right;margin-left:10px}@media print{.adthrive-ad,.adthrive-comscore,.adthrive-native-recipe{display:none!important;height:0;width:0;visibility:hidden}#dpsp-content-top,#dpsp-floating-sidebar,#dpsp-pop-up,#dpsp-pop-up-overlay,#dpsp-sticky-bar-wrapper{display:none!important}}.adthrive-device-desktop .adthrive-sticky-container>div,.adthrive-device-tablet .adthrive-sticky-container>div{top:140px!important}.adthrive-player-position.adthrive-collapse-float.adthrive-collapse-bottom-right,.adthrive-player-position.adthrive-collapse-mobile.adthrive-collapse-bottom-right,.raptive-player-container.adthrive-collapse-float.adthrive-collapse-bottom-right,.raptive-player-container.adthrive-collapse-mobile.adthrive-collapse-bottom-right{right:70px!important}body.adthrive-device-desktop .adthrive-sticky-outstream,body.adthrive-device-tablet .adthrive-sticky-outstream{margin-right:70px}body.adthrive-device-desktop .wprm-recipe-video,body.adthrive-device-tablet .wprm-recipe-video{min-height:300px!important}body.adthrive-device-phone .wprm-recipe-video{min-height:190px!important}body.wprm-print .adthrive-sidebar{right:10px;min-width:250px;max-width:320px}body.wprm-print .adthrive-sidebar:not(.adthrive-stuck){position:absolute;top:275px}body.wprm-print .wprm-recipe{max-width:800px}@media screen and (max-width:1299px){body.wprm-print.adthrive-device-desktop .wprm-recipe{margin-left:25px;max-width:650px}}.adthrive-embedded-stationary-player-container .adthrive-video-overlay{background-color:unset!important}.adthrive-embedded-stationary-player-container .adthrive-player-big-play-button{color:red!important}:root{--comment-rating-star-color:#343434}.wprm-comment-ratings-container svg .wprm-star-full{fill:var(--comment-rating-star-color)}.wprm-comment-ratings-container svg .wprm-star-empty{stroke:var(--comment-rating-star-color)}body:not(:hover) fieldset.wprm-comment-ratings-container:focus-within span{outline:#4d90fe solid 1px}.comment-form-wprm-rating{margin-bottom:20px;margin-top:5px;text-align:left}.comment-form-wprm-rating .wprm-rating-stars{display:inline-block;vertical-align:middle}fieldset.wprm-comment-ratings-container{background:0 0;border:0;display:inline-block;margin:0;padding:0;position:relative}fieldset.wprm-comment-ratings-container legend{left:0;opacity:0;position:absolute}fieldset.wprm-comment-ratings-container br{display:none}fieldset.wprm-comment-ratings-container input[type=radio]{border:0;cursor:pointer;float:left;height:16px;margin:0!important;min-height:0;min-width:0;opacity:0;padding:0!important;width:16px}fieldset.wprm-comment-ratings-container input[type=radio]:first-child{margin-left:-16px}fieldset.wprm-comment-ratings-container span{font-size:0;height:16px;left:0;opacity:0;pointer-events:none;position:absolute;top:0;width:80px}fieldset.wprm-comment-ratings-container span svg{height:100%!important;width:100%!important}fieldset.wprm-comment-ratings-container input:checked+span,fieldset.wprm-comment-ratings-container input:hover+span{opacity:1}fieldset.wprm-comment-ratings-container input:hover+span~span{display:none}.rtl .comment-form-wprm-rating{text-align:right}.rtl fieldset.wprm-comment-ratings-container span{left:inherit;right:0}.rtl fieldset.wprm-comment-ratings-container span svg{transform:scaleX(-1)}:root{--wprm-popup-font-size:16px;--wprm-popup-background:#fff;--wprm-popup-title:#000;--wprm-popup-content:#444;--wprm-popup-button-background:#5a822b;--wprm-popup-button-text:#fff}.wprm-popup-modal{display:none}.wprm-popup-modal.is-open{display:block}.wprm-popup-modal__overlay{align-items:center;background:rgba(0,0,0,.6);bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:2147483646}.wprm-popup-modal__container{background-color:var(--wprm-popup-background);border-radius:4px;box-sizing:border-box;font-size:var(--wprm-popup-font-size);max-height:100vh;max-width:100%;overflow-y:auto;padding:30px}.wprm-popup-modal__header{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px}.wprm-popup-modal__title{box-sizing:border-box;color:var(--wprm-popup-title);font-size:1.2em;font-weight:600;line-height:1.25;margin-bottom:0;margin-top:0}.wprm-popup-modal__header .wprm-popup-modal__close{background:0 0;border:0;cursor:pointer;width:18px}.wprm-popup-modal__header .wprm-popup-modal__close:before{color:var(--wprm-popup-title);content:"✕";font-size:var(--wprm-popup-font-size)}.wprm-popup-modal__content{color:var(--wprm-popup-content);line-height:1.5}.wprm-popup-modal__content p{font-size:1em;line-height:1.5}.wprm-popup-modal__footer{margin-top:20px}.wprm-popup-modal__btn{-webkit-appearance:button;background-color:var(--wprm-popup-button-background);border-radius:.25em;border-style:none;border-width:0;color:var(--wprm-popup-button-text);cursor:pointer;font-size:1em;line-height:1.15;margin:0;overflow:visible;padding:.5em 1em;text-transform:none;will-change:transform;-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);transition:-webkit-transform .25s ease-out;transition:transform .25s ease-out;transition:transform .25s ease-out,-webkit-transform .25s ease-out}.wprm-popup-modal__btn:focus,.wprm-popup-modal__btn:hover{-webkit-transform:scale(1.05);transform:scale(1.05)}@keyframes wprmPopupModalFadeIn{0%{opacity:0}to{opacity:1}}@keyframes wprmPopupModalFadeOut{0%{opacity:1}to{opacity:0}}@keyframes wprmPopupModalSlideIn{0%{transform:translateY(15%)}to{transform:translateY(0)}}@keyframes wprmPopupModalSlideOut{0%{transform:translateY(0)}to{transform:translateY(-10%)}}.wprm-popup-modal[aria-hidden=false] .wprm-popup-modal__overlay{animation:.3s cubic-bezier(0,0,.2,1) wprmPopupModalFadeIn}.wprm-popup-modal[aria-hidden=false] .wprm-popup-modal__container{animation:.3s cubic-bezier(0,0,.2,1) wprmPopupModalSlideIn}.wprm-popup-modal[aria-hidden=true] .wprm-popup-modal__overlay{animation:.3s cubic-bezier(0,0,.2,1) wprmPopupModalFadeOut}.wprm-popup-modal[aria-hidden=true] .wprm-popup-modal__container{animation:.3s cubic-bezier(0,0,.2,1) wprmPopupModalSlideOut}.wprm-popup-modal .wprm-popup-modal__container,.wprm-popup-modal .wprm-popup-modal__overlay{will-change:transform}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{background-color:#333;border-radius:4px;color:#fff;font-size:14px;line-height:1.4;outline:0;position:relative;transition-property:transform,visibility,opacity;white-space:normal}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{border-top-color:initial;border-width:8px 8px 0;bottom:-7px;left:0;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:initial;border-width:0 8px 8px;left:0;top:-7px;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-left-color:initial;border-width:8px 0 8px 8px;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{border-right-color:initial;border-width:8px 8px 8px 0;left:-7px;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{color:#333;height:16px;width:16px}.tippy-arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.tippy-content{padding:5px 9px;position:relative;z-index:1}.tippy-box[data-theme=wprm] .tippy-content p:first-child{margin-top:0}.tippy-box[data-theme=wprm] .tippy-content p:last-child{margin-bottom:0}.wprm-rating-star svg{display:inline;height:16px;margin:0;vertical-align:middle;width:16px}.wprm-loader{animation:1s ease-in-out infinite wprmSpin;-webkit-animation:1s ease-in-out infinite wprmSpin;border:2px solid hsla(0,0%,78%,.3);border-radius:50%;border-top-color:#444;display:inline-block;height:10px;width:10px}@keyframes wprmSpin{to{-webkit-transform:rotate(1turn)}}@-webkit-keyframes wprmSpin{to{-webkit-transform:rotate(1turn)}}.wprm-recipe-container{outline:0}.wprm-recipe{overflow:hidden;zoom:1;clear:both;text-align:left}.wprm-recipe *{box-sizing:border-box}.wprm-recipe ol,.wprm-recipe ul{-webkit-margin-before:0;-webkit-margin-after:0;-webkit-padding-start:0;margin:0;padding:0}.wprm-recipe li{font-size:1em;margin:0 0 0 32px;padding:0}.wprm-recipe p{font-size:1em;margin:0;padding:0}.wprm-recipe li,.wprm-recipe li.wprm-recipe-instruction{list-style-position:outside}.wprm-recipe li:before{display:none}.wprm-recipe h1,.wprm-recipe h2,.wprm-recipe h3,.wprm-recipe h4{clear:none;font-variant:normal;letter-spacing:normal;margin:0;padding:0;text-transform:none}.wprm-recipe a.wprm-recipe-link,.wprm-recipe a.wprm-recipe-link:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}body:not(.wprm-print) .wprm-recipe p:first-letter{color:inherit;font-family:inherit;font-size:inherit;line-height:inherit;margin:inherit;padding:inherit}.rtl .wprm-recipe{text-align:right}.rtl .wprm-recipe li{margin:0 32px 0 0}.wprm-screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}.wprm-call-to-action.wprm-call-to-action-simple{display:flex;justify-content:center;margin-top:10px;padding:5px 10px}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-icon{font-size:2.2em;margin:5px .5em 5px 0}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-icon svg{margin-top:0}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container{margin:5px 0}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container .wprm-call-to-action-header{display:block;font-size:1.3em;font-weight:700}@media (max-width:450px){.wprm-call-to-action.wprm-call-to-action-simple{flex-wrap:wrap}.wprm-call-to-action.wprm-call-to-action-simple .wprm-call-to-action-text-container{text-align:center}}.wprm-recipe-block-container-inline{display:inline-block;margin-right:1.2em}.rtl .wprm-recipe-block-container-inline{margin-left:1.2em;margin-right:0}.wprm-recipe-details-container-inline{display:inline}.wprm-recipe-details-unit{font-size:.8em}@media only screen and (max-width:600px){.wprm-recipe-details-unit{font-size:1em}}.wprm-expandable-container.wprm-expandable-expanded .wprm-expandable-button-show{display:none}.wprm-block-text-normal{font-style:normal;font-weight:400;text-transform:none}.wprm-block-text-bold{font-weight:700!important}.wprm-block-text-faded{opacity:.7}.wprm-block-text-faded .wprm-block-text-faded{opacity:1}.wprm-align-left{text-align:left}.wprm-recipe-header .wprm-recipe-icon{margin-right:5px}.wprm-recipe-icon svg{display:inline;height:1.3em;margin-top:-.15em;overflow:visible;vertical-align:middle;width:1.3em}.wprm-recipe-image img{display:block;margin:0 auto}.wprm-recipe-image .dpsp-pin-it-wrapper{margin:0 auto}.wprm-recipe-image picture{border:none!important}.wprm-recipe-ingredients-container .wprm-recipe-ingredient-group-name{margin-top:.8em!important}.wprm-recipe-ingredients-container .wprm-recipe-ingredient-notes-faded{opacity:.7}.wprm-recipe-shop-instacart-loading{cursor:wait;opacity:.5}.wprm-recipe-shop-instacart{align-items:center;border:1px solid #003d29;border-radius:23px;cursor:pointer;display:inline-flex;font-family:Instacart,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;font-size:14px;height:46px;padding:0 18px}.wprm-recipe-shop-instacart>img{height:22px!important;margin:0!important;padding:0!important;width:auto!important}.wprm-recipe-shop-instacart>span{margin-left:10px}.wprm-recipe-instructions-container .wprm-recipe-instruction-group-name{margin-top:.8em!important}.wprm-recipe-instructions-container .wprm-recipe-instruction-text{font-size:1em}.wprm-recipe-instructions-container .wprm-recipe-instruction-media{margin:5px 0 15px;max-width:100%}.wprm-recipe-instruction-ingredients-inline .wprm-recipe-instruction-ingredient{display:inline-block;padding-right:5px}.wprm-recipe-instruction-ingredients-inline .wprm-recipe-instruction-ingredient:last-child{padding-right:0}.rtl .wprm-recipe-instruction-ingredients-inline .wprm-recipe-instruction-ingredient{display:inline-block;padding-left:5px;padding-right:0}.rtl .wprm-recipe-instruction-ingredients-inline .wprm-recipe-instruction-ingredient:first-child{padding-left:5px}.wprm-recipe-link{cursor:pointer;text-decoration:none}.wprm-recipe-link.wprm-recipe-link-inline-button{display:inline-block;margin:0 5px 5px 0}.wprm-recipe-link.wprm-recipe-link-inline-button{border-style:solid;border-width:1px;padding:5px}.rtl .wprm-recipe-link.wprm-recipe-link-inline-button{margin:0 0 5px 5px}.wprm-nutrition-label-container-simple .wprm-nutrition-label-text-nutrition-unit{font-size:.85em}.wprm-recipe-rating{white-space:nowrap}.wprm-recipe-rating svg{height:1.1em;margin-top:-.15em!important;margin:0;vertical-align:middle;width:1.1em}.wprm-recipe-rating .wprm-recipe-rating-details{font-size:.8em}.wprm-spacer{background:0 0!important;display:block!important;font-size:0;height:10px;line-height:0;width:100%}.wprm-spacer+.wprm-spacer{display:none!important}.wprm-recipe-instruction-text .wprm-spacer,.wprm-recipe-notes .wprm-spacer,.wprm-recipe-summary .wprm-spacer{display:block!important}.wprm-recipe-header+.wprm-recipe-video{margin-top:10px}.wp-block-button__link{box-sizing:border-box;cursor:pointer;display:inline-block;text-align:center;word-break:break-word}:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}:root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link){border:2px solid;padding:.667em 1.333em}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)){color:currentColor}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)){background-color:initial;background-image:none}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-center{justify-content:center}:where(.wp-block-calendar table:not(.has-background) th){background:#ddd}.wp-block-columns{align-items:normal!important;box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}:where(.wp-block-post-comments input[type=submit]){border:none}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000}:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)){color:inherit}:where(.wp-block-file){margin-bottom:1.5em}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em}:where(.wp-block-file__button):is(a):active,:where(.wp-block-file__button):is(a):focus,:where(.wp-block-file__button):is(a):hover,:where(.wp-block-file__button):is(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-group{box-sizing:border-box}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}.wp-block-image a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.alignwide a{width:100%}.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)){line-height:1.1}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:1.8}:root :where(.wp-block-latest-posts.is-grid){padding:0}:root :where(.wp-block-latest-posts.wp-block-latest-posts__list){padding-left:0}ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}.wp-block-media-text{box-sizing:border-box}.wp-block-media-text{direction:ltr;display:grid;grid-template-columns:50% 1fr;grid-template-rows:auto}.wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media{align-self:start}.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media,.wp-block-media-text>.wp-block-media-text__content,.wp-block-media-text>.wp-block-media-text__media{align-self:center}.wp-block-media-text>.wp-block-media-text__media{grid-column:1;grid-row:1;margin:0}.wp-block-media-text>.wp-block-media-text__content{direction:ltr;grid-column:2;grid-row:1;padding:0 8%;word-break:break-word}.wp-block-media-text__media a{display:inline-block}.wp-block-media-text__media img,.wp-block-media-text__media video{height:auto;max-width:unset;vertical-align:middle;width:100%}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}:where(.wp-block-post-comments-form) input:not([type=submit]),:where(.wp-block-post-comments-form) textarea{border:1px solid #949494;font-family:inherit;font-size:1em}:where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox])),:where(.wp-block-post-comments-form) textarea{padding:calc(.667em + 2px)}:where(.wp-block-post-excerpt){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}:where(.wp-block-search__input){font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-transform:inherit}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:0}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em}:root :where(.wp-block-site-logo.is-style-rounded){border-radius:9999px}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link{background-color:#f0f0f0;color:#444}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon{background-color:#f90;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance{background-color:#0757fe;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky{background-color:#0a7aff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy{background-color:#f45800;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook{background-color:#0866ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr{background-color:#0461dd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare{background-color:#e65678;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github{background-color:#24292d;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google{background-color:#ea4434;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar{background-color:#1d4fc4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram{background-color:#f00075;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup{background-color:#f6405f;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest{background-color:#e60122;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket{background-color:#ef4155;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit{background-color:#ff4500;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype{background-color:#0478d7;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify{background-color:#1bd760;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram{background-color:#2aabee;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr{background-color:#011835;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch{background-color:#6440a4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk{background-color:#4680c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp{background-color:#d32422;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube{background-color:red;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link{background:0 0}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg{height:1.25em;width:1.25em}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon{color:#f90}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp{color:#1ea0c3}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance{color:#0757fe}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky{color:#0a7aff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen{color:#1e1f26}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart{color:#02e49b}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble{color:#e94c89}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox{color:#4280ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy{color:#f45800}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook{color:#0866ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr{color:#0461dd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare{color:#e65678}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github{color:#24292d}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads{color:#382110}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google{color:#ea4434}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar{color:#1d4fc4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram{color:#f00075}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm{color:#e21b24}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin{color:#0d66c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon{color:#3288d4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup{color:#f6405f}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest{color:#e60122}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket{color:#ef4155}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit{color:#ff4500}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype{color:#0478d7}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat{color:#fff;stroke:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud{color:#ff5600}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify{color:#1bd760}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram{color:#2aabee}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr{color:#011835}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch{color:#6440a4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter{color:#1da1f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo{color:#1eb7ea}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk{color:#4680c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp{color:#25d366}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress{color:#3499cd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp{color:#d32422}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube{color:red}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.66667em;padding-right:.66667em}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;font-size:unset!important;margin-right:0;padding:1ch 2ch;text-decoration:none!important}:root :where(.wp-block-table-of-contents){box-sizing:border-box}:where(.wp-block-term-description){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(pre.wp-block-verse){font-family:inherit}.entry-content{counter-reset:footnotes}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-text-align-center{text-align:center}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip:auto!important;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}.is-style-button-right-arrow .wp-element-button::after{content:"→";position:relative;margin-left:.2em}ol.is-style-circle-number-list{list-style-type:none;counter-reset:my-counter;padding-left:44px}ol.is-style-circle-number-list li{list-style-type:none;counter-increment:my-counter;position:relative;margin-bottom:var(--feast-spacing-xs)!important;margin-left:0!important}ol.is-style-circle-number-list li:last-child{margin-bottom:0}ol.is-style-circle-number-list li::before{content:counter(my-counter);position:absolute;top:2px;left:-36px;width:28px;height:28px;display:flex;align-items:center;justify-content:center;border-radius:28px;font-size:14px;font-weight:700}ol.is-style-circle-number-list[start="2"]{counter-reset:my-counter 1}ol.is-style-circle-number-list[start="3"]{counter-reset:my-counter 2}ol.is-style-circle-number-list[start="4"]{counter-reset:my-counter 3}ol.is-style-circle-number-list[start="5"]{counter-reset:my-counter 4}ol.is-style-circle-number-list[start="6"]{counter-reset:my-counter 5}ol.is-style-circle-number-list[start="7"]{counter-reset:my-counter 6}ol.is-style-circle-number-list[start="8"]{counter-reset:my-counter 7}ol.is-style-circle-number-list[start="9"]{counter-reset:my-counter 8}ol.is-style-circle-number-list[start="10"]{counter-reset:my-counter 9}ol.is-style-circle-number-list[start="11"]{counter-reset:my-counter 10}ol.is-style-circle-number-list[start="12"]{counter-reset:my-counter 11}ol.is-style-circle-number-list[start="13"]{counter-reset:my-counter 12}ol.is-style-circle-number-list[start="14"]{counter-reset:my-counter 13}ol.is-style-circle-number-list[start="15"]{counter-reset:my-counter 14}ol.is-style-circle-number-list[start="16"]{counter-reset:my-counter 15}ol.is-style-circle-number-list[start="17"]{counter-reset:my-counter 16}ol.is-style-circle-number-list[start="18"]{counter-reset:my-counter 17}ol.is-style-circle-number-list[start="19"]{counter-reset:my-counter 18}ol.is-style-circle-number-list[start="20"]{counter-reset:my-counter 19}body{counter-reset:step-count}.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}:root{--wp--preset--aspect-ratio--square:1;--wp--preset--aspect-ratio--4-3:4/3;--wp--preset--aspect-ratio--3-4:3/4;--wp--preset--aspect-ratio--3-2:3/2;--wp--preset--aspect-ratio--2-3:2/3;--wp--preset--aspect-ratio--16-9:16/9;--wp--preset--aspect-ratio--9-16:9/16;--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#FFF;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--color--feast-branding-color-primary:#c24c19;--wp--preset--color--feast-branding-color-accents:#5ed2da;--wp--preset--color--feast-branding-color-background:#e9f6fb;--wp--preset--color--feast-branding-color-links:#27507c;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6, 147, 227, 1) 0%,rgb(155, 81, 224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,rgb(122, 220, 180) 0%,rgb(0, 208, 130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252, 185, 0, 1) 0%,rgba(255, 105, 0, 1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255, 105, 0, 1) 0%,rgb(207, 46, 46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,rgb(238, 238, 238) 0%,rgb(169, 184, 195) 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,rgb(74, 234, 220) 0%,rgb(151, 120, 209) 20%,rgb(207, 42, 186) 40%,rgb(238, 44, 130) 60%,rgb(251, 105, 98) 80%,rgb(254, 248, 76) 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,rgb(255, 206, 236) 0%,rgb(152, 150, 240) 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,rgb(254, 205, 165) 0%,rgb(254, 45, 45) 50%,rgb(107, 0, 62) 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,rgb(255, 203, 112) 0%,rgb(199, 81, 192) 50%,rgb(65, 88, 208) 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,rgb(255, 245, 203) 0%,rgb(182, 227, 212) 50%,rgb(51, 167, 181) 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,rgb(202, 248, 128) 0%,rgb(113, 206, 126) 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,rgb(2, 3, 129) 0%,rgb(40, 116, 252) 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:0.44rem;--wp--preset--spacing--30:0.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0, 0, 0, .2);--wp--preset--shadow--deep:12px 12px 50px rgba(0, 0, 0, .4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0, 0, 0, .2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255, 255, 255, 1),6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0, 0, 0, 1)}:where(.is-layout-flex){gap:.5em}:where(.is-layout-grid){gap:.5em}body .is-layout-flex{display:flex}.is-layout-flex{flex-wrap:wrap;align-items:center}.is-layout-flex>:is(*,div){margin:0}.has-small-font-size{font-size:var(--wp--preset--font-size--small)!important}.has-large-font-size{font-size:var(--wp--preset--font-size--large)!important}:where(.wp-block-post-template.is-layout-flex){gap:1.25em}:where(.wp-block-post-template.is-layout-grid){gap:1.25em}:where(.wp-block-columns.is-layout-flex){gap:2em}:where(.wp-block-columns.is-layout-grid){gap:2em}:root :where(.wp-block-pullquote){font-size:1.5em;line-height:1.6}.feast-plugin a{word-break:break-word}.feast-plugin ul.menu a{word-break:initial}@media (prefers-reduced-motion:no-preference){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:.4s show-content-image}:root{scroll-behavior:smooth}}@media(max-width:1199px){.mmm-content ul li.menu-item-has-children{position:relative}.mmm-content ul li.menu-item-has-children>a{display:inline-block;margin-top:12px;margin-bottom:12px;width:100%;padding-right:48px}.mmm-content ul li.menu-item-has-children>ul.sub-menu{display:none}.mmm-content ul li.menu-item-has-children.open>ul.sub-menu{display:block}.mmm-content ul li.menu-item-has-children.open>button svg{transform:rotate(180deg)}}.category .content a,.single .content a,.site-footer a,aside a{text-decoration:underline}.feast-social-media{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;column-gap:18px;row-gap:9px;width:100%;padding:27px 0}.feast-social-media a{display:flex;align-items:center;justify-content:center;padding:12px}@media(max-width:600px){.feast-social-media a{min-height:50px;min-width:50px}}.feast-layout--menu-social-icons .feast-social-media{column-gap:8px;padding:0}.modern-menu-desktop-social .feast-layout--menu-social-icons .feast-social-media .social-media__link:nth-child(n+4){display:none}.feast-layout .dpsp-content-wrapper{display:none}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media{grid-column:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content{grid-column:1;grid-row:2}.wprm-recipe-container{margin-left:-5%;margin-right:-5%}}.schema-faq .schema-faq-section{margin-top:20px}.schema-faq strong.schema-faq-question{cursor:pointer;margin-bottom:0;position:relative;padding-right:24px}.schema-faq>div{margin-bottom:16px}.schema-faq>div p.schema-faq-answer{overflow:hidden;transition:all .2s ease-in-out}.schema-faq strong.schema-faq-question:after{content:'↓';position:absolute;top:50%;right:0;transform:translateY(-50%)}.schema-faq strong.schema-faq-question.active:after{content:'↑'}.schema-faq .schema-faq-section p{margin:0}.schema-faq-question.active~p *{line-height:inherit}.schema-faq>div p:not(.block-editor-rich-text__editable){height:0}.schema-faq>div p.schema-faq-answer{padding-left:16px!important;padding-right:16px!important}.schema-faq{margin-bottom:28px}.schema-faq-question.active~p:not(.block-editor-rich-text__editable){height:inherit;padding-top:7px}.schema-faq p{margin:0}body h1,body h2,body h3,body h4{line-height:1.2}.wp-block-media-text.is-variation-media-text-sidebar-bio{display:flex;flex-direction:column}.wp-block-media-text.is-variation-media-text-sidebar-bio .wp-block-media-text__media{display:flex;justify-content:center}.wp-block-media-text.is-variation-media-text-sidebar-bio .wp-block-media-text__content{padding:16px 24px 28px;margin:0;display:flex;flex-direction:column;gap:10px;box-sizing:border-box}.wp-block-media-text.is-variation-media-text-sidebar-bio .wp-block-media-text__content h2,.wp-block-media-text.is-variation-media-text-sidebar-bio .wp-block-media-text__content h3{font-size:1.625em}.wp-block-media-text.is-variation-media-text-sidebar-bio .wp-block-media-text__content *{margin:0;max-width:100%}.wp-block-media-text.is-variation-media-text-sidebar-bio .wp-block-media-text__content p{line-height:1.5}@media only screen and (max-width:335px){.site-inner{padding-left:0;padding-right:0}}@media only screen and (max-width:1023px){.feast-layout--modern-footer{padding-left:5%;padding-right:5%}.content-sidebar .content,.sidebar-primary{float:none;clear:both}}@media only screen and (max-width:600px){.site-container .feast-layout--modern-footer .is-style-full-width-feature-wrapper{margin:var(--feast-spacing-xl) -5%}aside input{min-height:50px;margin-bottom:17px}}a.wprm-recipe-jump:hover{opacity:1!important}.wp-block-media-text.is-variation-media-text-sidebar-bio .wp-block-media-text__media img{border-radius:178px;aspect-ratio:1/1;object-fit:cover}.wp-block-group,h1,h2,h3,h4{scroll-margin-top:80px}body .desktop-inline-modern-menu ul,body .feastmobilenavbar{overflow:visible;contain:initial}.feastmobilenavbar ul.menu>.menu-item{position:relative}.feastmobilenavbar ul.menu>.menu-item:focus-within>.sub-menu,.feastmobilenavbar ul.menu>.menu-item:hover>.sub-menu{left:0;opacity:1}.feastmobilenavbar .menu-item-has-children .sub-menu{background:#fff;left:-9999px;top:100%;opacity:0;border-radius:5px;box-shadow:0 5px 10px rgba(0,0,0,.15);padding:10px 0;position:absolute;width:auto;min-width:200px;z-index:99;display:flex;flex-direction:column;row-gap:0;height:auto;margin:0}.feastmobilenavbar .menu-item-has-children .sub-menu>.menu-item{width:100%;display:block;clear:both;border-top:none!important;min-height:0!important;max-width:none;text-align:left}.feastmobilenavbar .menu-item-has-children .sub-menu>.menu-item a{width:100%;background:0 0;padding:8px 30px 8px 20px;position:relative;white-space:nowrap;display:block}@media(max-width:768px){.menu-item-has-children .sub-menu{left:auto;opacity:1;position:relative;width:100%;border-radius:0;box-shadow:none;padding:0;display:none}}#dpsp-content-top{margin-bottom:1.2em}.dpsp-networks-btns-wrapper{margin:0!important;padding:0!important;list-style:none!important}.dpsp-networks-btns-wrapper:after{display:block;clear:both;height:0;content:""}.dpsp-networks-btns-wrapper li{float:left;margin:0;padding:0;border:0;list-style-type:none!important;-webkit-transition:.15s ease-in;-moz-transition:.15s ease-in;-o-transition:.15s ease-in;transition:all .15s ease-in}.dpsp-networks-btns-wrapper li:before{display:none!important}.dpsp-networks-btns-wrapper li:first-child{margin-left:0!important}.dpsp-networks-btns-wrapper .dpsp-network-btn{display:flex;position:relative;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;min-width:40px;height:40px;max-height:40px;padding:0;border:2px solid;border-radius:0;box-shadow:none;font-family:Arial,sans-serif;font-size:14px;font-weight:700;line-height:36px;text-align:center;vertical-align:middle;text-decoration:none!important;text-transform:unset!important;cursor:pointer;-webkit-transition:.15s ease-in;-moz-transition:.15s ease-in;-o-transition:.15s ease-in;transition:all .15s ease-in}.dpsp-networks-btns-wrapper .dpsp-network-btn .dpsp-network-label{padding-right:.5em;padding-left:.5em}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-has-count .dpsp-network-label{padding-right:.25em}@media screen and (max-width:480px){.dpsp-network-hide-label-mobile,.dpsp-no-labels-mobile .dpsp-network-label{display:none!important}}.dpsp-networks-btns-wrapper .dpsp-network-btn:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn:hover{border:2px solid;outline:0;box-shadow:0 0 0 3px rgba(21,156,228,.4);box-shadow:0 0 0 3px var(--networkHover)}.dpsp-networks-btns-wrapper .dpsp-network-btn:after{display:block;clear:both;height:0;content:""}.dpsp-size-small .dpsp-networks-btns-wrapper:not(.dpsp-networks-btns-sidebar) .dpsp-network-btn.dpsp-no-label .dpsp-network-icon{width:28px}.dpsp-networks-btns-wrapper .dpsp-network-btn .dpsp-network-count{padding-right:.5em;padding-left:.25em;font-size:13px;font-weight:400;white-space:nowrap}.dpsp-networks-btns-wrapper.dpsp-networks-btns-sidebar .dpsp-network-btn .dpsp-network-count{position:absolute;bottom:0;left:0;width:100%;height:20px;margin-left:0;padding-left:.5em;font-size:11px;line-height:20px;text-align:center}.dpsp-networks-btns-wrapper.dpsp-column-4 li{width:25%}.dpsp-has-spacing .dpsp-networks-btns-wrapper.dpsp-column-4 li{width:23.5%}.dpsp-networks-btns-wrapper.dpsp-column-4 li:nth-child(4n){margin-right:0}.dpsp-facebook{--networkAccent:#334d87;--networkColor:#3a579a;--networkHover:rgba(51, 77, 135, .4)}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook{border-color:#3a579a;color:#3a579a;background:#3a579a}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook:not(:hover):not(:active){color:#3a579a}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook .dpsp-network-icon{border-color:#3a579a;color:#3a579a;background:#3a579a}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:none!important;stroke:var(--customNetworkColor,var(--networkColor,#3a579a));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#3a579a))}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkColor,var(--networkColor,#3a579a));stroke:var(--customNetworkColor,var(--networkColor,#3a579a));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook:focus .dpsp-network-icon,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook:hover,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook:hover .dpsp-network-icon{border-color:#334d87;color:#334d87;background:#334d87}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook:focus .dpsp-network-icon .dpsp-network-icon-inner>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook:hover .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:#334d87}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook:focus .dpsp-network-icon .dpsp-network-icon-inner>svg>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-facebook:hover .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkHoverColor,var(--networkHover,#334d87));stroke:var(--customNetworkHoverColor,var(--networkHover,#334d87))}.dpsp-x{--networkAccent:#000;--networkColor:#000;--networkHover:rgba(0, 0, 0, .4)}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x{border-color:#000;color:#000;background:#000}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x:not(:hover):not(:active){color:#000}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x .dpsp-network-icon{border-color:#000;color:#000;background:#000}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:none!important;stroke:var(--customNetworkColor,var(--networkColor,#000));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#000))}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkColor,var(--networkColor,#000));stroke:var(--customNetworkColor,var(--networkColor,#000));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x:focus .dpsp-network-icon,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x:hover,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x:hover .dpsp-network-icon{border-color:#000;color:#000;background:#000}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x:focus .dpsp-network-icon .dpsp-network-icon-inner>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x:hover .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:#000}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x:focus .dpsp-network-icon .dpsp-network-icon-inner>svg>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-x:hover .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkHoverColor,var(--networkHover,#000));stroke:var(--customNetworkHoverColor,var(--networkHover,#000))}.dpsp-pinterest{--networkAccent:#b31e24;--networkColor:#c92228;--networkHover:rgba(179, 30, 36, .4)}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest{border-color:#c92228;color:#c92228;background:#c92228}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest:not(:hover):not(:active){color:#c92228}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest .dpsp-network-icon{border-color:#c92228;color:#c92228;background:#c92228}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:none!important;stroke:var(--customNetworkColor,var(--networkColor,#c92228));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#c92228))}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkColor,var(--networkColor,#c92228));stroke:var(--customNetworkColor,var(--networkColor,#c92228));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest:focus .dpsp-network-icon,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest:hover,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest:hover .dpsp-network-icon{border-color:#b31e24;color:#b31e24;background:#b31e24}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest:focus .dpsp-network-icon .dpsp-network-icon-inner>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest:hover .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:#b31e24}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest:focus .dpsp-network-icon .dpsp-network-icon-inner>svg>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-pinterest:hover .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkHoverColor,var(--networkHover,#b31e24));stroke:var(--customNetworkHoverColor,var(--networkHover,#b31e24))}.dpsp-whatsapp{--networkAccent:#21c960;--networkColor:#25d366;--networkHover:rgba(33, 201, 96, .4)}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp{border-color:#25d366;color:#25d366;background:#25d366}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp:not(:hover):not(:active){color:#25d366}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp .dpsp-network-icon{border-color:#25d366;color:#25d366;background:#25d366}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:none!important;stroke:var(--customNetworkColor,var(--networkColor,#25d366));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#25d366))}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkColor,var(--networkColor,#25d366));stroke:var(--customNetworkColor,var(--networkColor,#25d366));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp:focus .dpsp-network-icon,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp:hover,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp:hover .dpsp-network-icon{border-color:#21c960;color:#21c960;background:#21c960}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp:focus .dpsp-network-icon .dpsp-network-icon-inner>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp:hover .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:#21c960}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp:focus .dpsp-network-icon .dpsp-network-icon-inner>svg>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-whatsapp:hover .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkHoverColor,var(--networkHover,#21c960));stroke:var(--customNetworkHoverColor,var(--networkHover,#21c960))}.dpsp-yummly{--networkAccent:#d84d1a;--networkColor:#e55a27;--networkHover:rgba(216, 77, 26, .4)}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly{border-color:#e55a27;color:#e55a27;background:#e55a27}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly:not(:hover):not(:active){color:#e55a27}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly .dpsp-network-icon{border-color:#e55a27;color:#e55a27;background:#e55a27}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:none!important;stroke:var(--customNetworkColor,var(--networkColor,#e55a27));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#e55a27))}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkColor,var(--networkColor,#e55a27));stroke:var(--customNetworkColor,var(--networkColor,#e55a27));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly:focus .dpsp-network-icon,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly:hover,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly:hover .dpsp-network-icon{border-color:#d84d1a;color:#d84d1a;background:#d84d1a}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly:focus .dpsp-network-icon .dpsp-network-icon-inner>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly:hover .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:#d84d1a}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly:focus .dpsp-network-icon .dpsp-network-icon-inner>svg>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-yummly:hover .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkHoverColor,var(--networkHover,#d84d1a));stroke:var(--customNetworkHoverColor,var(--networkHover,#d84d1a))}.dpsp-email{--networkAccent:#239e57;--networkColor:#27ae60;--networkHover:rgba(35, 158, 87, .4)}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email{border-color:#27ae60;color:#27ae60;background:#27ae60}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email:not(:hover):not(:active){color:#27ae60}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email .dpsp-network-icon{border-color:#27ae60;color:#27ae60;background:#27ae60}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:none!important;stroke:var(--customNetworkColor,var(--networkColor,#27ae60));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#27ae60))}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkColor,var(--networkColor,#27ae60));stroke:var(--customNetworkColor,var(--networkColor,#27ae60));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email:focus .dpsp-network-icon,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email:hover,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email:hover .dpsp-network-icon{border-color:#239e57;color:#239e57;background:#239e57}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email:focus .dpsp-network-icon .dpsp-network-icon-inner>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email:hover .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:#239e57}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email:focus .dpsp-network-icon .dpsp-network-icon-inner>svg>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-email:hover .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkHoverColor,var(--networkHover,#239e57));stroke:var(--customNetworkHoverColor,var(--networkHover,#239e57))}.dpsp-buffer{--networkAccent:#21282f;--networkColor:#29323b;--networkHover:rgba(33, 40, 47, .4)}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer{border-color:#29323b;color:#29323b;background:#29323b}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer:not(:hover):not(:active){color:#29323b}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer .dpsp-network-icon{border-color:#29323b;color:#29323b;background:#29323b}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:none!important;stroke:var(--customNetworkColor,var(--networkColor,#29323b));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#29323b))}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkColor,var(--networkColor,#29323b));stroke:var(--customNetworkColor,var(--networkColor,#29323b));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer:focus .dpsp-network-icon,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer:hover,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer:hover .dpsp-network-icon{border-color:#21282f;color:#21282f;background:#21282f}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer:focus .dpsp-network-icon .dpsp-network-icon-inner>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer:hover .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:#21282f}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer:focus .dpsp-network-icon .dpsp-network-icon-inner>svg>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-buffer:hover .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkHoverColor,var(--networkHover,#21282f));stroke:var(--customNetworkHoverColor,var(--networkHover,#21282f))}.dpsp-mastodon{--networkAccent:#8c8dff;--networkColor:#8c8dff;--networkHover:rgba(140, 141, 255, .4)}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon{border-color:#8c8dff;color:#8c8dff;background:#8c8dff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon:not(:hover):not(:active){color:#8c8dff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon .dpsp-network-icon{border-color:#8c8dff;color:#8c8dff;background:#8c8dff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:none!important;stroke:var(--customNetworkColor,var(--networkColor,#8c8dff));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#8c8dff))}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkColor,var(--networkColor,#8c8dff));stroke:var(--customNetworkColor,var(--networkColor,#8c8dff));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon:focus .dpsp-network-icon,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon:hover,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon:hover .dpsp-network-icon{border-color:#8c8dff;color:#8c8dff;background:#8c8dff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon:focus .dpsp-network-icon .dpsp-network-icon-inner>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon:hover .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:#8c8dff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon:focus .dpsp-network-icon .dpsp-network-icon-inner>svg>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-mastodon:hover .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkHoverColor,var(--networkHover,#8c8dff));stroke:var(--customNetworkHoverColor,var(--networkHover,#8c8dff))}.dpsp-messenger{--networkAccent:#a334fa;--networkColor:#0695ff;--networkHover:rgba(163, 52, 250, .4)}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger{border-color:#0695ff;color:#0695ff;background:#0695ff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger:not(:hover):not(:active){color:#0695ff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger .dpsp-network-icon{border-color:#0695ff;color:#0695ff;background:#0695ff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:none!important;stroke:var(--customNetworkColor,var(--networkColor,#0695ff));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#0695ff))}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkColor,var(--networkColor,#0695ff));stroke:var(--customNetworkColor,var(--networkColor,#0695ff));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger:focus .dpsp-network-icon,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger:hover,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger:hover .dpsp-network-icon{border-color:#a334fa;color:#a334fa;background:#a334fa}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger:focus .dpsp-network-icon .dpsp-network-icon-inner>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger:hover .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:#a334fa}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger:focus .dpsp-network-icon .dpsp-network-icon-inner>svg>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-messenger:hover .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkHoverColor,var(--networkHover,#a334fa));stroke:var(--customNetworkHoverColor,var(--networkHover,#a334fa))}.dpsp-bluesky{--networkAccent:#58b8ff;--networkColor:#0a7aff;--networkHover:rgba(88, 184, 255, .4)}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky{border-color:#0a7aff;color:#0a7aff;background:#0a7aff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky:not(:hover):not(:active){color:#0a7aff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky .dpsp-network-icon{border-color:#0a7aff;color:#0a7aff;background:#0a7aff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:none!important;stroke:var(--customNetworkColor,var(--networkColor,#0a7aff));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#0a7aff))}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkColor,var(--networkColor,#0a7aff));stroke:var(--customNetworkColor,var(--networkColor,#0a7aff));stroke-width:1}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky:focus,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky:focus .dpsp-network-icon,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky:hover,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky:hover .dpsp-network-icon{border-color:#58b8ff;color:#58b8ff;background:#58b8ff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky:focus .dpsp-network-icon .dpsp-network-icon-inner>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky:hover .dpsp-network-icon .dpsp-network-icon-inner>svg{fill:#58b8ff}.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky:focus .dpsp-network-icon .dpsp-network-icon-inner>svg>svg,.dpsp-networks-btns-wrapper .dpsp-network-btn.dpsp-bluesky:hover .dpsp-network-icon .dpsp-network-icon-inner>svg>svg{fill:var(--customNetworkHoverColor,var(--networkHover,#58b8ff));stroke:var(--customNetworkHoverColor,var(--networkHover,#58b8ff))}.dpsp-shape-rounded .dpsp-network-btn,.dpsp-shape-rounded .dpsp-network-btn .dpsp-network-icon{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.dpsp-shape-rounded .dpsp-network-btn,.dpsp-shape-rounded .dpsp-no-label.dpsp-network-btn .dpsp-network-icon{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}.dpsp-has-spacing .dpsp-networks-btns-wrapper li{margin-right:2%;margin-bottom:10px;margin-left:0!important}.dpsp-size-small .dpsp-networks-btns-wrapper:not(.dpsp-networks-btns-sidebar):not(.dpsp-networks-btns-sticky-bar) .dpsp-network-btn{min-width:32px;height:32px;max-height:32px;line-height:28px}.dpsp-size-small .dpsp-networks-btns-wrapper:not(.dpsp-networks-btns-sidebar):not(.dpsp-networks-btns-sticky-bar) .dpsp-network-btn.dpsp-no-label .dpsp-network-icon{width:32px}.dpsp-size-small .dpsp-networks-btns-wrapper:not(.dpsp-networks-btns-sidebar):not(.dpsp-networks-btns-sticky-bar) .dpsp-network-btn .dpsp-network-icon{width:32px;height:32px;line-height:28px}.dpsp-size-small .dpsp-networks-btns-wrapper:not(.dpsp-networks-btns-sidebar):not(.dpsp-networks-btns-sticky-bar) .dpsp-network-btn .dpsp-network-icon-inner{height:28px}.dpsp-grow-check-icon{opacity:0;transition:all .2s ease;transform-origin:center center}.dpsp-grow-saved .dpsp-grow-check-icon{opacity:1}.dpsp-pin-it-wrapper{display:inline-table;position:relative!important;line-height:0}.blocks-gallery-item .dpsp-pin-it-wrapper{display:inline-block}.dpsp-pin-it-wrapper:hover .dpsp-pin-it-button{visibility:visible;color:#fff!important;background-color:#c92228!important}.dpsp-pin-it-button{display:inline-block;position:absolute;visibility:hidden;width:auto!important;height:40px!important;border:0!important;color:transparent!important;background:0 0;background-image:none!important;box-shadow:none!important;font-family:Arial;font-size:14px;font-weight:700;line-height:40px;vertical-align:middle;text-decoration:none!important;transition:all .25s ease-in-out}.dpsp-pin-it-button:hover{color:#fff;background:#b31e24;box-shadow:none!important}.dpsp-pin-it-button.dpsp-pin-it-button-has-label{padding-right:20px}.dpsp-pin-it-button.dpsp-pin-it-button-has-label:after{display:inline-block;content:attr(title)}.dpsp-pin-it-button .dpsp-network-icon{display:inline-block;width:40px;height:40px;text-align:center;vertical-align:top}.dpsp-pin-it-button .dpsp-network-icon svg{display:inline-block;height:20px;vertical-align:middle;fill:#fff}.dpsp-pin-it-wrapper .dpsp-pin-it-overlay{display:block;position:absolute;top:0;left:0;visibility:hidden;width:100%;height:100%;opacity:0;background:#fff;transition:all .25s ease-in-out;pointer-events:none}.dpsp-pin-it-wrapper:hover .dpsp-pin-it-overlay{visibility:visible;opacity:.4}@media screen and (min-width:481px){.dpsp-pin-it-wrapper.dpsp-always-show-desktop .dpsp-pin-it-button{visibility:visible!important;color:#fff!important;background-color:#c92228!important}}@media screen and (max-width:480px){.dpsp-pin-it-wrapper.dpsp-always-show-mobile .dpsp-pin-it-button{visibility:visible!important;color:#fff!important;background-color:#c92228!important}}#dpsp-floating-sidebar{position:fixed;top:50%;transform:translateY(-50%);z-index:9998}#dpsp-floating-sidebar.dpsp-position-left{left:0}.dpsp-networks-btns-wrapper.dpsp-networks-btns-sidebar li{float:none;margin-left:0}.dpsp-networks-btns-wrapper.dpsp-networks-btns-sidebar .dpsp-network-btn{width:40px;padding:0}.dpsp-networks-btns-wrapper.dpsp-networks-btns-sidebar .dpsp-network-btn .dpsp-network-icon{border-color:transparent!important;background:0 0!important}.dpsp-networks-btns-wrapper.dpsp-networks-btns-sidebar .dpsp-network-btn.dpsp-has-count .dpsp-network-icon{height:22px;line-height:22px}.dpsp-networks-btns-wrapper.dpsp-networks-btns-sidebar .dpsp-network-btn.dpsp-has-count .dpsp-network-icon-inner{height:18px}#dpsp-floating-sidebar.dpsp-no-animation{display:none}#dpsp-floating-sidebar.dpsp-no-animation.opened{display:block}#dpsp-floating-sidebar.stop-hidden,#dpsp-floating-sidebar.stop-hidden.opened{visibility:hidden}.dpsp-shape-rounded .dpsp-networks-btns-sidebar .dpsp-network-btn,.dpsp-shape-rounded .dpsp-networks-btns-sidebar .dpsp-network-btn .dpsp-network-icon{border-radius:0}.dpsp-position-left.dpsp-shape-rounded .dpsp-networks-btns-sidebar .dpsp-network-btn.dpsp-first,.dpsp-position-left.dpsp-shape-rounded .dpsp-networks-btns-sidebar .dpsp-network-btn.dpsp-first .dpsp-network-icon{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px}.dpsp-position-left.dpsp-shape-rounded .dpsp-networks-btns-sidebar .dpsp-network-btn.dpsp-last,.dpsp-position-left.dpsp-shape-rounded .dpsp-networks-btns-sidebar .dpsp-network-btn.dpsp-last .dpsp-network-icon{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}.dpsp-shape-rounded.dpsp-has-spacing .dpsp-networks-btns-sidebar .dpsp-network-btn .dpsp-network-icon{border-radius:4px}#dpsp-floating-sidebar .dpsp-networks-btns-wrapper li{position:relative;overflow:visible}#dpsp-floating-sidebar .dpsp-networks-btns-wrapper .dpsp-network-label{display:inline-block;position:absolute;top:50%;visibility:hidden;box-sizing:border-box;width:auto;height:30px;margin-top:-15px;padding:6px 12px;border-radius:3px;opacity:0;color:#fff;background:#34495e;font-size:12px;font-weight:400;line-height:18px;white-space:nowrap;transition:all .2s ease-in-out;z-index:1}#dpsp-floating-sidebar.dpsp-position-left .dpsp-networks-btns-wrapper .dpsp-network-label{left:100%}#dpsp-floating-sidebar.dpsp-position-left .dpsp-networks-btns-wrapper li.dpsp-hover .dpsp-network-label{visibility:visible;opacity:1;transform:translateX(10px)}#dpsp-floating-sidebar .dpsp-networks-btns-wrapper .dpsp-network-label:before{display:block;position:absolute;top:50%;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;content:""}#dpsp-floating-sidebar.dpsp-position-left .dpsp-networks-btns-wrapper .dpsp-network-label:before{left:-5px;border-right:5px solid #34495e}#dpsp-sticky-bar-wrapper{position:fixed;bottom:0;left:0;width:100%;max-width:100vw;background:#fff;z-index:1000}#dpsp-sticky-bar-wrapper.dpsp-no-animation{visibility:hidden;opacity:0}#dpsp-sticky-bar-wrapper.dpsp-no-animation.opened{visibility:visible;opacity:1}#dpsp-sticky-bar{display:none;position:relative;box-sizing:border-box;margin:7px 0}#dpsp-sticky-bar .dpsp-networks-btns-wrapper{display:flex}#dpsp-sticky-bar .dpsp-networks-btns-wrapper li{float:none;margin-right:3px;margin-bottom:0;margin-left:3px;flex:1}#dpsp-sticky-bar .dpsp-networks-btns-wrapper li:last-of-type{margin-right:0}#dpsp-sticky-bar .dpsp-network-btn{padding-right:1em;padding-left:1em;text-align:center}#dpsp-sticky-bar .dpsp-network-btn .dpsp-network-icon{display:inline-block;position:relative;overflow:visible;width:20px}#dpsp-sticky-bar .dpsp-network-btn.dpsp-has-count .dpsp-network-icon{margin-right:5px}#dpsp-sticky-bar-wrapper.dpsp-is-mobile #dpsp-sticky-bar{position:static;width:100%!important;margin:0;padding:0}#dpsp-sticky-bar-wrapper.dpsp-is-mobile #dpsp-sticky-bar .dpsp-networks-btns-wrapper li{margin:0}#dpsp-sticky-bar-wrapper.dpsp-is-mobile #dpsp-sticky-bar .dpsp-network-btn{height:44px;max-height:44px;padding-right:0;padding-left:0;border-radius:0;line-height:40px;text-align:center}#dpsp-sticky-bar-wrapper.dpsp-is-mobile #dpsp-sticky-bar .dpsp-network-btn .dpsp-network-icon{display:inline-block;position:relative;left:auto;float:none;font-size:18px;line-height:40px}#dpsp-sticky-bar-wrapper.dpsp-is-mobile #dpsp-sticky-bar .dpsp-network-btn.dpsp-has-count .dpsp-network-icon{display:block;position:absolute;width:100%;height:26px;line-height:26px}#dpsp-sticky-bar-wrapper.dpsp-is-mobile #dpsp-sticky-bar .dpsp-network-btn .dpsp-network-count{position:absolute;bottom:0;left:0;width:100%;height:20px;margin-left:0;font-size:11px;line-height:20px;text-align:center}.dpsp-click-to-tweet{display:block;position:relative;margin:1.5em 0;font-size:105%;text-decoration:none;transition:all .15s ease-in}.dpsp-click-to-tweet,.dpsp-click-to-tweet:hover{box-shadow:none!important}.dpsp-click-to-tweet:after{display:block;clear:both;content:""}.dpsp-networks-btns-wrapper .dpsp-network-btn .dpsp-network-icon{display:block;position:relative;top:-2px;left:-2px;-moz-box-sizing:border-box;box-sizing:border-box;width:40px;height:40px;border:2px solid;font-size:14px;line-height:36px;text-align:center;-webkit-transition:.15s ease-in;-moz-transition:.15s ease-in;-o-transition:.15s ease-in;transition:all .15s ease-in;align-self:start;flex:0 0 auto}.dpsp-icon-total-share svg,.dpsp-network-icon .dpsp-network-icon-inner svg{position:relative;overflow:visible;width:auto;max-height:14px;transition:fill .15s ease-in-out}.dpsp-icon-total-share,.dpsp-network-icon-inner{display:flex;align-items:center;justify-content:center}.dpsp-network-icon-inner{height:36px;transition:all .2s ease}.dpsp-networks-btns-wrapper.dpsp-has-button-icon-animation .dpsp-network-btn:hover .dpsp-network-icon-inner{transition:all .2s cubic-bezier(.62,3.15,.4,-.64);transform:scale(1.5)}#dpsp-pop-up{position:fixed;width:100%;max-width:750px;padding:40px;border-radius:10px;opacity:0;background:#fff;-webkit-transition:.25s ease-in-out;-moz-transition:.25s ease-in-out;-o-transition:.25s ease-in-out;transition:all .25s ease-in-out;transform:translate(-50%,-50%);z-index:9999}#dpsp-pop-up.opened{top:50%;left:50%;opacity:1;transform:scale(1) translate(-50%,-50%)}#dpsp-pop-up-overlay{display:block;position:fixed;top:0;left:0;width:0;height:0;opacity:0;background:#000;-webkit-transition:opacity .25s ease-in-out,margin .25s ease-in-out;-moz-transition:opacity .25s ease-in-out,margin .25s ease-in-out;-o-transition:opacity .25s ease-in-out,margin .25s ease-in-out;transition:opacity .25s ease-in-out,margin .25s ease-in-out;z-index:9998}#dpsp-pop-up-overlay.opened{width:100%;height:100%;opacity:.65}#dpsp-pop-up h2{margin-bottom:1em}#dpsp-pop-up h2 p{font-size:inherit}#dpsp-pop-up h2 p:last-of-type{margin-top:0;margin-bottom:0}#dpsp-pop-up p{margin-top:1em;margin-bottom:1em}#dpsp-post-bottom{width:0;height:0;margin:0;padding:0}@media screen and (max-width:800px){#dpsp-pop-up{width:90%}}@media screen and (max-width:720px){#dpsp-pop-up .dpsp-networks-btns-wrapper li{width:100%;margin-right:0;margin-left:0}}.dpsp-top-shared-post{margin-bottom:2em}.dpsp-show-total-share-count{position:relative}.dpsp-total-share-wrapper{position:relative;margin-top:10px;color:#5d6368;font-family:Helvetica,'Helvetica Neue',Arial,sans-serif;line-height:1.345}.dpsp-total-share-wrapper .dpsp-total-share-count{font-size:15px;line-height:18px;white-space:nowrap}.dpsp-total-share-wrapper .dpsp-icon-total-share{position:absolute;top:6px;left:0;margin-top:0;margin-left:0}.dpsp-total-share-wrapper .dpsp-icon-total-share svg{top:2px;width:auto;max-height:16px;fill:#5d6368}#dpsp-floating-sidebar .dpsp-total-share-wrapper{margin-bottom:10px}#dpsp-floating-sidebar .dpsp-total-share-wrapper .dpsp-icon-total-share{display:none}.dpsp-total-share-wrapper span{display:block;font-size:11px;font-weight:700;text-align:center;white-space:nowrap;text-transform:uppercase}.dpsp-content-wrapper .dpsp-total-share-wrapper{position:absolute;top:50%;box-sizing:border-box;width:60px;height:40px;margin-top:-21px;padding-left:20px}#dpsp-sticky-bar .dpsp-total-share-wrapper{height:32px;margin-top:-16px}#dpsp-sticky-bar-wrapper.dpsp-is-mobile .dpsp-total-share-wrapper{display:none}.dpsp-content-wrapper.dpsp-show-total-share-count.dpsp-show-total-share-count-after{padding-right:70px}.dpsp-content-wrapper.dpsp-show-total-share-count.dpsp-show-total-share-count-after .dpsp-total-share-wrapper{right:0}.dpsp-email-save-this-tool{clear:both;border:1px solid #333;padding:20px;margin:25px 0;display:flex;box-shadow:0 0 0 max(100vh,100vw) hsla(0,0%,100%,0);transition:box-shadow .7s}.dpsp-email-save-this-tool img{max-width:80%}.dpsp-email-save-this-tool.hubbub-spotlight{box-shadow:0 0 0 max(100vh,100vw) rgba(0,0,0,.3);transition:box-shadow .7s;position:relative!important;z-index:99999!important}.dpsp-email-save-this-tool p{margin:5px .2rem;text-align:center}input.hubbub-block-save-this-submit-button,input:disabled.hubbub-block-save-this-submit-button{border-radius:.33rem;border-color:var(--wp--preset--color--contrast);border-width:0;font-family:inherit;font-size:var(--wp--preset--font-size--small);font-style:normal;font-weight:500;line-height:inherit;padding:.6rem 1rem;text-decoration:none}input.hubbub-save-this-consent{width:auto;height:auto}input.hubbub-save-this-snare{display:none}p.hubbub-save-this-saved{font-weight:700;font-size:18px;color:#000}input#hubbub-save-this-consent.hubbub-save-this-error{border:2px solid red!important}.dpsp-button-style-1 .dpsp-network-btn{color:#fff!important}.dpsp-button-style-1 .dpsp-network-btn.dpsp-has-count:not(.dpsp-has-label),.dpsp-button-style-1 .dpsp-network-btn.dpsp-no-label{justify-content:center}.dpsp-button-style-1 .dpsp-network-btn .dpsp-network-icon:not(.dpsp-network-icon-outlined) .dpsp-network-icon-inner>svg{fill:#fff!important}.dpsp-button-style-1 .dpsp-network-btn .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{stroke:#fff!important}.dpsp-button-style-1 .dpsp-network-btn.dpsp-grow-saved .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg,.dpsp-button-style-1 .dpsp-network-btn:focus .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg,.dpsp-button-style-1 .dpsp-network-btn:hover .dpsp-network-icon.dpsp-network-icon-outlined .dpsp-network-icon-inner>svg{fill:#fff!important}.dpsp-networks-btns-sidebar .dpsp-network-btn,.dpsp-networks-btns-sidebar .dpsp-network-btn .dpsp-network-icon{border-color:transparent;background:0 0}.dpsp-networks-btns-sidebar .dpsp-network-btn:focus,.dpsp-networks-btns-sidebar .dpsp-network-btn:hover{border-color:transparent}.dpsp-networks-btns-sidebar .dpsp-network-btn:focus .dpsp-network-icon,.dpsp-networks-btns-sidebar .dpsp-network-btn:hover .dpsp-network-icon{border-color:transparent;background:0 0}@media screen and (max-width :720px){.dpsp-content-wrapper.dpsp-hide-on-mobile{display:none}.dpsp-has-spacing .dpsp-networks-btns-wrapper li{margin:0 2% 10px 0}.dpsp-network-btn.dpsp-has-label:not(.dpsp-has-count){max-height:40px;padding:0;justify-content:center}.dpsp-content-wrapper.dpsp-size-small .dpsp-network-btn.dpsp-has-label:not(.dpsp-has-count){max-height:32px}aside#dpsp-floating-sidebar.dpsp-hide-on-mobile.opened{display:none}}@font-face{font-display:swap;font-family:fontello;src:url('https://howtofeedaloon.com/wp-content/plugins/tbf-new-tab-icon/app/lib/fontello/font/fontello.eot?81110214');src:url('https://howtofeedaloon.com/wp-content/plugins/tbf-new-tab-icon/app/lib/fontello/font/fontello.eot?81110214#iefix') format('embedded-opentype'),url('https://howtofeedaloon.com/wp-content/plugins/tbf-new-tab-icon/app/lib/fontello/font/fontello.woff2?81110214') format('woff2'),url('https://howtofeedaloon.com/wp-content/plugins/tbf-new-tab-icon/app/lib/fontello/font/fontello.woff?81110214') format('woff'),url('https://howtofeedaloon.com/wp-content/plugins/tbf-new-tab-icon/app/lib/fontello/font/fontello.ttf?81110214') format('truetype'),url('https://howtofeedaloon.com/wp-content/plugins/tbf-new-tab-icon/app/lib/fontello/font/fontello.svg?81110214#fontello') format('svg');font-weight:400;font-style:normal}[class*=" icon-"]:before{font-family:fontello;font-style:normal;font-weight:400;speak:never;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}article a[target="_blank"]::after,main a[target="_blank"]::after{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;-webkit-font-smoothing:antialiased}article a[target="_blank"]::after,main a[target="_blank"]::after{font-family:fontello;font-weight:900;content:"\f08e";margin:0 3px 0 5px;font-size:smaller}#wprm-timer-container{align-items:center;background-color:#000;bottom:0;color:#fff;display:flex;font-family:monospace,sans-serif;font-size:24px;height:50px;left:0;line-height:50px;position:fixed;right:0;z-index:16777271}#wprm-timer-container .wprm-timer-icon{cursor:pointer;padding:0 10px}#wprm-timer-container .wprm-timer-icon svg{display:table-cell;height:24px;vertical-align:middle;width:24px}#wprm-timer-container span{flex-shrink:0}#wprm-timer-container span#wprm-timer-bar-container{flex:1;padding:0 10px 0 15px}#wprm-timer-container span#wprm-timer-bar-container #wprm-timer-bar{border:3px solid #fff;display:block;height:24px;width:100%}#wprm-timer-container span#wprm-timer-bar-container #wprm-timer-bar #wprm-timer-bar-elapsed{background-color:#fff;border:0;display:block;height:100%;width:0}#wprm-timer-container.wprm-timer-finished{animation:1s linear infinite wprmtimerblink}@keyframes wprmtimerblink{50%{opacity:.5}}.wprm-user-rating.wprm-user-rating-allowed .wprm-rating-star{cursor:pointer}.wprm-popup-modal-user-rating .wprm-popup-modal__container{max-width:500px;width:95%}.wprm-popup-modal-user-rating #wprm-user-ratings-modal-message{display:none}.wprm-popup-modal-user-rating .wprm-user-ratings-modal-recipe-name{margin:5px auto;max-width:350px;text-align:center}.wprm-popup-modal-user-rating .wprm-user-ratings-modal-stars-container{margin-bottom:5px;text-align:center}.wprm-popup-modal-user-rating .wprm-user-rating-modal-comment-suggestions-container{display:none}.wprm-popup-modal-user-rating .wprm-user-rating-modal-comment-suggestions-container .wprm-user-rating-modal-comment-suggestion{border:1px dashed var(--wprm-popup-button-background);border-radius:5px;cursor:pointer;font-size:.8em;font-weight:700;margin:5px;padding:5px 10px}.wprm-popup-modal-user-rating .wprm-user-rating-modal-comment-suggestions-container .wprm-user-rating-modal-comment-suggestion:hover{border-style:solid}.wprm-popup-modal-user-rating input,.wprm-popup-modal-user-rating textarea{box-sizing:border-box}.wprm-popup-modal-user-rating textarea{border:1px solid #cecece;border-radius:4px;display:block;font-family:inherit;font-size:.9em;line-height:1.5;margin:0;min-height:75px;padding:10px;resize:vertical;width:100%}.wprm-popup-modal-user-rating textarea:focus::placeholder{color:transparent}.wprm-popup-modal-user-rating .wprm-user-rating-modal-field{align-items:center;display:flex;margin-top:10px}.wprm-popup-modal-user-rating .wprm-user-rating-modal-field label{margin-right:10px;min-width:70px;width:auto}.wprm-popup-modal-user-rating .wprm-user-rating-modal-field input{border:1px solid #cecece;border-radius:4px;display:block;flex:1;font-size:.9em;line-height:1.5;margin:0;padding:5px 10px;width:100%}.wprm-popup-modal-user-rating.wprm-user-rating-modal-logged-in .wprm-user-rating-modal-comment-meta{display:none}.wprm-popup-modal-user-rating button{margin-right:5px}.wprm-popup-modal-user-rating button:disabled,.wprm-popup-modal-user-rating button[disabled]{cursor:not-allowed;opacity:.5}.wprm-popup-modal-user-rating #wprm-user-rating-modal-errors{color:#8b0000;display:inline-block;font-size:.8em}.wprm-popup-modal-user-rating #wprm-user-rating-modal-errors div,.wprm-popup-modal-user-rating #wprm-user-rating-modal-waiting{display:none}fieldset.wprm-user-ratings-modal-stars{background:0 0;border:0;display:inline-block;margin:0;padding:0;position:relative}fieldset.wprm-user-ratings-modal-stars legend{left:0;opacity:0;position:absolute}fieldset.wprm-user-ratings-modal-stars br{display:none}fieldset.wprm-user-ratings-modal-stars input[type=radio]{border:0;cursor:pointer;float:left;height:16px;margin:0!important;min-height:0;min-width:0;opacity:0;padding:0!important;width:16px}fieldset.wprm-user-ratings-modal-stars input[type=radio]:first-child{margin-left:-16px}fieldset.wprm-user-ratings-modal-stars span{font-size:0;height:16px;left:0;opacity:0;pointer-events:none;position:absolute;top:0;width:80px}fieldset.wprm-user-ratings-modal-stars span svg{height:100%!important;width:100%!important}fieldset.wprm-user-ratings-modal-stars input:checked+span,fieldset.wprm-user-ratings-modal-stars input:hover+span{opacity:1}fieldset.wprm-user-ratings-modal-stars input:hover+span~span{display:none}.rtl fieldset.wprm-user-ratings-modal-stars span{left:inherit;right:0}.rtl fieldset.wprm-user-ratings-modal-stars span svg{transform:scaleX(-1)}@supports(-webkit-touch-callout:none){.wprm-popup-modal-user-rating .wprm-user-rating-modal-field input,.wprm-popup-modal-user-rating textarea{font-size:16px}}.wprm-recipe-advanced-servings-container{align-items:center;display:flex;flex-wrap:wrap;margin:5px 0}.wprm-recipe-advanced-servings-container .wprm-recipe-advanced-servings-input-unit{margin-left:3px}.wprm-recipe-advanced-servings-container .wprm-recipe-advanced-servings-input-shape{margin-left:5px}.wprm-recipe-equipment-container,.wprm-recipe-ingredients-container,.wprm-recipe-instructions-container{counter-reset:wprm-advanced-list-counter}.wprm-checkbox-container{margin-left:-16px}.rtl .wprm-checkbox-container{margin-left:0;margin-right:-16px}.wprm-checkbox-container input[type=checkbox]{margin:0!important;opacity:0;width:16px!important}.wprm-checkbox-container label.wprm-checkbox-label{display:inline!important;left:0;margin:0!important;padding-left:26px;position:relative}.wprm-checkbox-container label:after,.wprm-checkbox-container label:before{content:"";display:inline-block;position:absolute}.rtl .wprm-checkbox-container label:after{right:5px}.wprm-checkbox-container label:before{border:1px solid;height:18px;left:0;top:0;width:18px}.wprm-checkbox-container label:after{border-bottom:2px solid;border-left:2px solid;height:5px;left:5px;top:5px;transform:rotate(-45deg);width:9px}.wprm-checkbox-container input[type=checkbox]+label:after{content:none}.wprm-checkbox-container input[type=checkbox]:checked+label:after{content:""}.wprm-checkbox-container input[type=checkbox]:focus+label:before{outline:#3b99fc auto 5px}.wprm-recipe-equipment li,.wprm-recipe-ingredients li,.wprm-recipe-instructions li{position:relative}.wprm-recipe-equipment li .wprm-checkbox-container,.wprm-recipe-ingredients li .wprm-checkbox-container,.wprm-recipe-instructions li .wprm-checkbox-container{display:inline-block;left:-32px;line-height:.9em;position:absolute;top:.25em}.wprm-recipe-equipment li.wprm-checkbox-is-checked,.wprm-recipe-equipment li.wprm-checkbox-is-checked .wprm-recipe-instruction-ingredient,.wprm-recipe-ingredients li.wprm-checkbox-is-checked,.wprm-recipe-ingredients li.wprm-checkbox-is-checked .wprm-recipe-instruction-ingredient,.wprm-recipe-instructions li.wprm-checkbox-is-checked,.wprm-recipe-instructions li.wprm-checkbox-is-checked .wprm-recipe-instruction-ingredient{text-decoration:line-through}.rtl .wprm-recipe-equipment li .wprm-checkbox-container,.rtl .wprm-recipe-ingredients li .wprm-checkbox-container,.rtl .wprm-recipe-instructions li .wprm-checkbox-container{left:inherit;right:-32px}.wprm-list-checkbox-container:before{display:none!important}.wprm-list-checkbox-container.wprm-list-checkbox-checked{text-decoration:line-through}.wprm-list-checkbox-container .wprm-list-checkbox:hover{cursor:pointer}.no-js .wprm-private-notes-container,.no-js .wprm-recipe-private-notes-header{display:none}.wprm-private-notes-container:not(.wprm-private-notes-container-disabled){cursor:pointer}.wprm-private-notes-container .wprm-private-notes-user{display:none}.wprm-private-notes-container.wprm-private-notes-has-notes .wprm-private-notes-user{display:block}.wprm-private-notes-container.wprm-private-notes-editing .wprm-private-notes-user{display:none}.wprm-private-notes-container .wprm-private-notes-user{white-space:pre-wrap}.wprm-print .wprm-private-notes-container{cursor:default}.wprm-print .wprm-private-notes-container .wprm-private-notes-user{display:block!important}input[type=number].wprm-recipe-servings{display:inline;margin:0;padding:5px;width:60px}.wprm-recipe-servings-text-buttons-container{display:inline-flex}.wprm-recipe-servings-text-buttons-container input[type=text].wprm-recipe-servings{border-radius:0!important;display:inline;margin:0;outline:0;padding:0;text-align:center;vertical-align:top;width:40px}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change,.wprm-recipe-servings-text-buttons-container input[type=text].wprm-recipe-servings{border:1px solid #333;font-size:16px;height:30px;user-select:none}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change{background:#333;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;line-height:26px;text-align:center;width:20px}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change:active{font-weight:700}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change.wprm-recipe-servings-decrement{border-bottom-right-radius:0!important;border-right:none;border-top-right-radius:0!important}.wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change.wprm-recipe-servings-increment{border-bottom-left-radius:0!important;border-left:none;border-top-left-radius:0!important}.wprm-recipe-servings-container .tippy-box{padding:5px 10px}.wprm-add-to-collection-tooltip-container{padding:3px}.wprm-add-to-collection-tooltip-container select.wprm-add-to-collection-tooltip{display:block;margin:10px 0;padding:3px;width:100%}#wprm-recipe-submission textarea{resize:vertical}.screen-reader-text{width:1px;height:1px}.site-footer ul li,footer ul li{list-style-type:none}aside input{min-height:50px}aside div,aside p,aside ul{margin:17px 0}a.wp-block-button__link{text-decoration:none!important}.schema-faq-question{font-size:1.2em;display:block;margin-bottom:7px}.schema-faq-section{margin:37px 0}.fsri-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));grid-gap:57px 17px;list-style:none;list-style-type:none;margin:17px 0!important}.fsri-list li{text-align:center;position:relative;list-style:none!important;margin-left:0!important;list-style-type:none!important;overflow:hidden}.listing-item:focus-within{outline:#555 solid 2px}.listing-item a:focus,.listing-item a:focus .fsri-title,.listing-item a:focus img{opacity:.8;outline:0}.listing-item a{text-decoration:none!important;word-break:break-word}li.listing-item:before{content:none!important}.fsri-list{padding-left:0!important}.fsri-list .listing-item{margin:0}.fsri-list .listing-item img{display:block}.fsri-list .feast_2x3_thumbnail{object-fit:cover;width:100%;aspect-ratio:2/3}.fsri-title{text-wrap:balance}.listing-item{display:grid;align-content:flex-start}.feast-grid-half{display:grid;grid-gap:57px 17px}.feast-grid-half{grid-template-columns:repeat(2,minmax(0,1fr))!important}@media only screen and (min-width:600px){.feast-desktop-grid-half{grid-template-columns:repeat(2,1fr)!important}.feast-desktop-grid-fourth{grid-template-columns:repeat(4,1fr)!important}}figure{margin:0 0 1em}body{-webkit-animation:none!important;animation:none!important}summary{display:list-item}.comment-list article header{overflow:auto}nav#breadcrumbs{margin:5px 0 15px}.entry-content .wp-block-group ol li,.entry-content .wp-block-group ul li{margin:0 0 17px 37px}.entry-content ul:not(.fsri-list):not(.feast-category-index-list) li{margin-left:0;margin-bottom:0}@media only screen and (max-width:940px){nav#breadcrumbs{display:block}}.page .content a{text-decoration:underline}.entry-author:after,.entry-time:after{content:"";margin:inherit}.wprm-recipe-template-snippet-basic-buttons-no-video{font-family:inherit;font-size:.9em;text-align:center;margin-top:0;margin-bottom:10px}.wprm-recipe-template-snippet-basic-buttons-no-video a{margin:5px;margin:5px}.wprm-recipe-template-snippet-basic-buttons-no-video a:first-child{margin-left:0}.wprm-recipe-template-snippet-basic-buttons-no-video a:last-child{margin-right:0;display:none}.wprm-recipe-template-h2fla-cut-out-template{margin:20px auto;background-color:#fafafa;font-family:Helvetica,sans-serif;font-size:1.125em;line-height:1.5em!important;color:#333;max-width:650px}.wprm-recipe-template-h2fla-cut-out-template a{color:#aa2203}.wprm-recipe-template-h2fla-cut-out-template li,.wprm-recipe-template-h2fla-cut-out-template p{font-family:Helvetica,sans-serif;font-size:1em!important;line-height:1.5em!important}.wprm-recipe-template-h2fla-cut-out-template li{margin:0 0 0 32px!important;padding:0!important}.wprm-recipe-template-h2fla-cut-out-template ol,.wprm-recipe-template-h2fla-cut-out-template ul{margin:0!important;padding:0!important}.wprm-recipe-template-h2fla-cut-out-template br{display:none}.wprm-recipe-template-h2fla-cut-out-template .wprm-recipe-header,.wprm-recipe-template-h2fla-cut-out-template .wprm-recipe-name{font-family:Helvetica,sans-serif;color:#000;line-height:1.3em}.wprm-recipe-template-h2fla-cut-out-template h1,.wprm-recipe-template-h2fla-cut-out-template h2,.wprm-recipe-template-h2fla-cut-out-template h3,.wprm-recipe-template-h2fla-cut-out-template h4{font-family:Helvetica,sans-serif;color:#000;line-height:1.3em;margin:0!important;padding:0!important}.wprm-recipe-template-h2fla-cut-out-template .wprm-recipe-header{margin-top:1.2em!important}.wprm-recipe-template-h2fla-cut-out-template h1{font-size:2em}.wprm-recipe-template-h2fla-cut-out-template h2{font-size:1.8em}.wprm-recipe-template-h2fla-cut-out-template h3{font-size:1.2em}.wprm-recipe-template-h2fla-cut-out-template h4{font-size:1em}.wprm-recipe-template-h2fla-cut-out-template{position:relative;border-style:solid;border-width:1px;border-color:#aaa;border-radius:10px;margin:120px auto 20px;overflow:visible}.wprm-recipe-template-h2fla-cut-out-template-container{overflow:hidden;padding:0 10px 10px;border:0;border-radius:7px}.wprm-recipe-template-h2fla-cut-out-template .wprm-recipe-image{position:absolute;margin-top:-100px;margin-left:-100px;left:50%}.wprm-recipe-template-h2fla-cut-out-template-header{margin:0 -10px 10px;padding:110px 10px 10px;text-align:center;background-color:#053f5e;color:#fff}.wprm-recipe-template-h2fla-cut-out-template-header a{color:#fff}.wprm-recipe-template-h2fla-cut-out-template-header .wprm-recipe-name{color:#fff}img#wpstats{display:none}@-webkit-keyframes openmenu{from{left:-100px;opacity:0}to{left:0;opacity:1}}@-webkit-keyframes closebutton{0%{opacity:0}100%{opacity:1}}@keyframes openmenu{from{left:-100px;opacity:0}to{left:0;opacity:1}}@keyframes closebutton{0%{opacity:0}100%{opacity:1}}html{scroll-padding-top:90px}.feastmobilemenu-background{display:none;position:fixed;z-index:9999;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:#000;background-color:rgba(0,0,0,.4)}.feastmobilemenu-background:target{display:table;position:fixed}.mmm-dialog{display:table-cell;vertical-align:top;font-size:20px}.mmm-dialog .mmm-content{margin:0;padding:10px 10px 10px 20px;position:fixed;left:0;background-color:#fefefe;contain:strict;overflow-x:hidden;overflow-y:auto;outline:0;border-right:1px solid #777;border-bottom:1px solid #777;width:320px;height:90%;box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);-webkit-animation-name:openmenu;-webkit-animation-duration:.6s;animation-name:openmenu;animation-duration:.6s}.mmm-content ul.sub-menu{padding-left:16px}.mmm-content li{list-style:none}#menu-feast-modern-mobile-menu li,.desktop-inline-modern-menu>ul.menu li{min-height:50px;margin-left:5px;list-style:none}#menu-feast-modern-mobile-menu li a,.desktop-inline-modern-menu>ul.menu li a{color:inherit;text-decoration:inherit}.closebtn{text-decoration:none;float:right;margin-right:10px;font-size:50px;font-weight:700;color:#333;z-index:1301;top:0;position:fixed;left:270px;-webkit-animation-name:closebutton;-webkit-animation-duration:1.5s;animation-name:closebutton;animation-duration:1.5s}.closebtn:focus,.closebtn:hover{color:#555;cursor:pointer}@media (prefers-reduced-motion){.closebtn,.mmm-dialog .mmm-content{animation:none!important}}#mmmlogo{max-width:200px;max-height:70px}#feast-mobile-search{margin-bottom:17px;min-height:50px;overflow:auto}#feast-mobile-search input[type=submit]{display:none}#feast-mobile-search input[type=search]{width:100%}#feast-mobile-menu-social-icons{margin-top:17px}.feastmobilenavbar{position:fixed;top:0;left:0;z-index:1300;width:100%;height:80px;padding:0;margin:0 auto;box-sizing:border-box;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background:#fff;display:grid;grid-template-columns:repeat(7,minmax(50px,1fr));text-align:center;contain:strict;overflow:hidden}.feastmobilenavbar>div{height:80px}.feastmobilenavbar a img{margin-bottom:inherit!important}.feastmenutoggle,.feastsearchtoggle,.feastsubscribebutton{display:flex;align-items:center;justify-items:center;justify-content:center}.feastmenutoggle svg,.feastsearchtoggle svg{width:30px;height:30px;padding:10px;box-sizing:content-box;color:#000}.feastsubscribebutton{overflow:hidden}.feastsubscribebutton img{max-width:90px;padding:15px;margin:1px}.feastsubscribebutton svg{color:#000}.feastmenulogo{overflow:hidden;display:flex;align-items:center;justify-content:center;grid-column-end:span 4}.desktop-inline-modern-menu .sub-menu{display:none}.desktop-inline-modern-menu,.modern-menu-desktop-social{display:none}@media only screen and (min-width:1200px){.desktop-inline-modern-menu,.modern-menu-desktop-social{display:block;line-height:1.2em}.feastmobilenavbar .feastmenutoggle{display:none}.feastmobilenavbar{grid-template-columns:1fr 3fr 1fr 50px!important}.feastmenulogo{grid-column-end:span 1!important}.desktop-inline-modern-menu ul{display:flex;justify-content:center;gap:40px;height:70px;overflow:hidden;margin:0 17px}.desktop-inline-modern-menu ul li{display:flex;justify-content:center;align-items:center;min-height:70px;max-width:20%;margin-left:0!important}.desktop-inline-modern-menu ul li:nth-child(n+6){display:none}.modern-menu-desktop-social{display:flex!important;justify-content:center;align-items:center}body .feastmobilenavbar a{color:#000;text-decoration:none}}@media only screen and (max-width:1199px){.feastmenulogo{grid-column-end:span 3}.feastsubscribebutton{grid-column-end:span 2}}@media only screen and (max-width:359px){.feastmobilenavbar{grid-template-columns:repeat(6,minmax(50px,1fr))}.feastmenulogo{grid-column-end:span 2}}.nav-primary,header.site-header{display:none!important;visibility:hidden}.site-container{margin-top:80px}@media only screen and (min-width:1200px){.feastmobilenavbar{width:100%;left:0;padding-left:calc(50% - 550px);padding-right:calc(50% - 550px)}.feastsubscribebutton{display:none}}@media print{.feastmobilenavbar{position:static}}@font-face{font-family:'Josefin Sans';font-style:normal;font-weight:700;font-display:swap;src:url('https://howtofeedaloon.com/wp-content/uploads/omgf/feast-plus-fonts/josefin-sans-normal-latin-700.woff2?ver=1648064490') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Satisfy;font-style:normal;font-weight:400;font-display:swap;src:url('https://howtofeedaloon.com/wp-content/uploads/omgf/feast-plus-fonts/satisfy-normal-latin-400.woff2?ver=1648064490') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}:root{--font-fallback:BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-sans;--branding-color-primary:#c24c19;--branding-color-primary-text:#FFFFFF;--branding-color-accents:#5ed2da;--branding-color-accents-text:#000000;--branding-color-background:#e9f6fb;--branding-color-background-text:#000000;--branding-color-links:#27507c;--feast-spacing-xxxs:8px;--feast-spacing-xxs:8px;--feast-spacing-xs:12px;--feast-spacing-s:16px;--feast-spacing-m:20px;--feast-spacing-l:20px;--feast-spacing-xl:20px;--feast-spacing-xxl:24px;--feast-font-s:20px;--feast-font-m:24px;--feast-font-l:28px;--feast-font-xl:32px;--feast-border-radius:7px;--feast-banner-height:48px;--feast-modern-menu-height:80px;--feast-top-offset-height:var(--feast-modern-menu-height);--branding-body-font:"+ Open Sans";--branding-heading-font:"Josefin Sans";--branding-accent-font:"Satisfy"}.feast-plugin a{color:var(--branding-color-links)}.feast-plugin .entry-content a{text-underline-offset:3px;text-decoration-thickness:3px}#respond #submit,.wp-block-button__link,body .wp-block-button a{background:var(--branding-color-primary)!important;color:var(--branding-color-primary-text)!important;text-decoration:none!important;font-weight:700;padding:11px}.wp-block-button__link svg{fill:var(--branding-color-primary-text)!important}.wp-block-button__link,body .wp-block-button a{padding:11px 18px}#respond #submit,.wp-block-button__link{border-radius:var(--feast-border-radius)}#respond #submit,.wp-block-button__link{border:2px solid #000;box-shadow:4px 6px 0 #000;margin-bottom:6px}#respond #submit:hover,.wp-block-button__link:hover{border:2px solid #000;background:#fff!important;color:#000!important;box-shadow:none}#respond #submit,.wp-block-button__link{font-weight:400!important}.fsri-list .listing-item{border-radius:var(--feast-border-radius)}.fsri-list .listing-item img{border-radius:var(--feast-border-radius)}.fsri-list .listing-item{box-shadow:0 2px 6px #ccc;background:#fff}.fsri-list .listing-item img{border:7px solid #fff}.is-style-full-width-feature-wrapper .wp-block-columns{padding:var(--feast-spacing-s)}.fsri-title{padding:0 7px 17px}.is-style-full-width-feature-wrapper .fsri-list svg{fill:#000}body .fsri-list:not(.fsri-numbered) .fsri-title{margin-top:5px}.category .wp-block-group p,.is-style-full-width-feature-wrapper .wp-block-columns h2,.is-style-full-width-feature-wrapper .wp-block-columns p,.page .wp-block-group p{margin:var(--feast-spacing-xxs) 0}.page .wp-block-group .wp-block-media-text p,.wp-block-group .wp-block-media-text h2,.wp-block-media-text h2,.wp-block-media-text p{margin:var(--feast-spacing-xs) 0}.wp-block-media-text__content>:first-child{margin-top:0!important}.wp-block-media-text__content>:last-child{margin-bottom:0!important}.wp-block-group .wp-block-media-text{align-self:center}.fsri-title{color:#000;line-height:1.3;text-wrap:balance}aside .fsri-title{margin:0}.is-style-full-width-feature-wrapper svg{fill:var(--branding-color-background-text)}.entry-content .wp-block-group .feast-category-index ul li{margin-bottom:0}.feast-recipe-index .fsri-list{grid-gap:var(--feast-spacing-xs)}#feast-advanced-jump-to,.is-style-group-lightbulb,.schema-faq-section{border-radius:var(--feast-border-radius)}#feast-advanced-jump-to,.is-style-group-lightbulb,.schema-faq-section{background-color:var(--branding-color-background)!important;color:var(--branding-color-background-text)!important;border:none!important;scrollbar-color:var(--branding-color-background-text) #EEE!important}#feast-advanced-jump-to a,.is-style-group-lightbulb a,.schema-faq .schema-faq-question:after,.schema-faq-section a{color:var(--branding-color-background-text)!important}#feast-advanced-jump-to::-webkit-scrollbar{width:15px}#feast-advanced-jump-to::-webkit-scrollbar-thumb{background:var(--branding-color-background-text)!important;background-clip:padding-box!important;border:5px solid transparent;-webkit-box-shadow:none!important;border-radius:15px}#feast-advanced-jump-to ::marker{display:none}#feast-advanced-jump-to summary{font-weight:700!important}.wp-block-group.is-style-group-lightbulb{padding:45px clamp(20px,calc(1.25rem + ((1vw - 6px) * 2.1127)),32px) 20px;position:relative;margin-bottom:37px;margin-top:calc(var(--feast-spacing-xl) + 25px)}.is-style-full-width-feature-wrapper .wp-block-group__inner-container>:first-child,.is-style-group-lightbulb .wp-block-group__inner-container>:first-child{margin-top:0}.is-style-full-width-feature-wrapper .wp-block-group__inner-container>:last-child,.is-style-group-lightbulb .wp-block-group__inner-container>:last-child{margin-bottom:0}body .entry-content .schema-faq-section>p:last-child{margin-bottom:0}.is-style-group-lightbulb::before{background:var(--wpr-bg-338a52e9-7e9b-4f3a-a893-52850f566fa6);background-color:var(--branding-color-accents);color:var(--branding-color-accents-text)}.is-style-group-lightbulb::before{position:absolute;content:'';top:-25px;left:clamp(20px,calc(1.25rem + ((1vw - 6px) * .8803)),25px);height:50px;width:50px;background-repeat:no-repeat!important;background-position:center;background-size:30px 30px!important;border-radius:100%}.entry-content a:hover{background:var(--branding-color-background);color:var(--branding-color-background-text)}.listing-item a:hover{background:0 0!important}.home .entry-title{font-size:1.2em;line-height:1.2em;margin:-30px -6% 0;background:var(--branding-color-background);color:var(--branding-color-background-text);padding:var(--feast-spacing-xxl);text-align:center}.schema-faq-section{padding:var(--feast-spacing-s)}.wp-block-media-text.is-variation-media-text-sidebar-bio{background-color:var(--branding-color-background);margin-top:32px}.wp-block-media-text.is-variation-media-text-sidebar-bio .wp-block-media-text__media{margin-top:-32px}.wp-block-media-text.is-variation-media-text-sidebar-bio .wp-block-media-text__media img{width:178px;max-width:100%;height:auto;border-radius:178px;border:6px solid #fff;box-shadow:0 6px 12px rgba(0,0,0,.15)}.wp-block-media-text .wp-block-media-text__content{padding-top:var(--feast-spacing-s);padding-bottom:var(--feast-spacing-s)}.wp-block-media-text.is-variation-media-text-sidebar-bio .wp-block-media-text__content *{color:var(--branding-color-background-text)}.wp-block-group{margin:var(--feast-spacing-xl) 0}.wp-block-group h2{line-height:1.2em;margin-bottom:var(--feast-spacing-xs)}.wp-block-group h2:first-child{margin-top:0}.entry-content ul:not(.is-style-inline-list):not(.fsri-list):not(.feast-category-index-list){padding-left:37px}@media(max-width:600px){.wp-block-media-text .wp-block-media-text__content{padding:var(--feast-spacing-s)}.entry-content ul:not(.is-style-inline-list):not(.fsri-list):not(.feast-category-index-list){padding-left:17px}}.entry-content ul:not(.fsri-list):not(.feast-category-index-list) li{line-height:1.6;margin-left:0}.entry-content ul:not(.is-style-inline-list):not(.fsri-list):not(.feast-category-index-list):not(.wp-block-social-links) li:not(:last-child){margin-bottom:var(--feast-spacing-xs)}ul.is-style-circle-number-list{display:flex;flex-direction:column}ul.is-style-circle-number-list li{width:100%}ol.is-style-circle-number-list li::before{background-color:var(--branding-color-background);color:var(--branding-color-background-text)}ol.is-style-circle-number-list li::before{color:var(--branding-color-accents-text);background:var(--branding-color-accents)}@media only screen and (max-width:600px){.entry-content :not(.wp-block-gallery) .wp-block-image{width:100%!important}body{--wp--preset--font-size--small:16px!important}.entry-content ul:not(.is-style-inline-list):not(.fsri-list):not(.feast-category-index-list) li:not(:last-child){margin-bottom:var(--feast-spacing-s)}.site-container .site-inner .is-style-full-width-feature-wrapper{margin:var(--feast-spacing-xl) -4%}.site-container .is-style-full-width-feature-wrapper{margin:var(--feast-spacing-xl) 0;padding:clamp(20px,calc(1.25rem + ((1vw - 6px) * 2.1127)),32px)}}.is-style-full-width-feature-wrapper{background:var(--branding-color-background)}.is-style-full-width-feature-wrapper,.is-style-full-width-feature-wrapper a{color:var(--branding-color-background-text)}.wp-block-group>.wp-block-group__inner-container{margin:0}body{font-family:var(--branding-body-font),var(--font-fallback)!important;font-weight:400;letter-spacing:normal}h1,h2,h3,h4{font-family:var(--branding-heading-font),var(--font-fallback)!important;font-weight:800;letter-spacing:normal;text-transform:none}h1,h2,h3,h4{font-weight:700!important}h1,h2,h3,h4{font-weight:700!important;line-height:1.2em!important}.is-variation-fancy-text{font-family:var(--branding-accent-font),var(--font-fallback)!important;font-size:1.2em;margin-top:var(--feast-spacing-xxs)!important;margin-bottom:8px!important}.wp-block-group__inner-container p.is-variation-fancy-text:first-child,p.is-variation-fancy-text+:not(div){margin-top:0!important}.is-variation-media-text-sidebar-bio .is-variation-fancy-text{margin-top:0!important;margin-bottom:0!important}.is-variation-fancy-text:last-child{margin-bottom:0!important}body.feast-plugin h1,body.feast-plugin h2,body.feast-plugin h3,body.feast-plugin h4{text-transform:initial}body .site-footer{letter-spacing:normal}body .site-footer:has(.feast-modern-footer){padding-bottom:0;text-transform:initial;text-align:inherit}body .site-footer:has(.feast-modern-footer) ul.wp-block-list{padding-left:0}.mmm-dialog ul.menu li a,body .feastmobilenavbar ul li a{font-size:16px;text-transform:uppercase;font-weight:700;letter-spacing:1px;line-height:1.2em}.mmm-dialog ul.menu li a{color:#000;font-size:20px}#feast-advanced-jump-to summary::-webkit-details-marker,#feast-advanced-jump-to summary::marker{display:none;content:""}#feast-advanced-jump-to summary{position:relative;cursor:pointer}#feast-advanced-jump-to summary::after{content:"";position:absolute;top:calc(50% - 7px);right:30px;background-image:var(--wpr-bg-3389a1fa-b3ff-44ae-bedd-a993500e0b68);width:26px;height:15px;background-size:cover;transition:all .2s ease-in-out;transform:rotate(180deg)}#feast-advanced-jump-to[open] summary::after{transform:rotate(0)}body #feast-advanced-jump-to li a{text-decoration:underline;color:var(--branding-color-links)!important}body #feast-advanced-jump-to{background-color:var(--branding-color-background)!important;border:2px solid var(--branding-color-background)!important;box-shadow:none!important}body #feast-advanced-jump-to ul{padding-left:44px}body #feast-advanced-jump-to li{list-style-type:disc}body #feast-advanced-jump-to li::marker{color:var(--branding-color-links)!important}body #feast-advanced-jump-to{border-radius:var(--feast-border-radius)}@media(max-width:1023px){body .entry{padding-top:0}}@media (min-width:481px){:root{--feast-spacing-xxxs:8px;--feast-spacing-xxs:12px;--feast-spacing-xs:16px;--feast-spacing-s:20px;--feast-spacing-m:24px;--feast-spacing-l:28px;--feast-spacing-xl:32px;--feast-spacing-xxl:44px;--feast-desktop-font-xxs:12px;--feast-desktop-font-xs:16px}#respond #submit,.wp-block-button__link{display:inline-block;transition:.4s;-webkit-transition:.4s}#respond #submit:hover,.wp-block-button__link:hover{transform:scale(.9)}.home .entry-title{box-shadow:0 0 0 100vmax var(--branding-color-background);-webkit-clip-path:inset(0 -100vmax);clip-path:inset(0 -100vmax)}.site-container .is-style-full-width-feature-wrapper{margin:var(--feast-spacing-xl) auto;padding:clamp(20px,calc(1.25rem + ((1vw - 6px) * 2.1127)),32px);box-shadow:0 0 0 100vmax var(--branding-color-background);-webkit-clip-path:inset(0 -100vmax);clip-path:inset(0 -100vmax)}.site-container .sidebar .is-style-full-width-feature-wrapper{box-shadow:none;-webkit-clip-path:none;clip-path:none;background-color:var(--branding-color-background)}.site-container .is-style-full-width-feature-wrapper .wp-block-group__inner-container{width:100%;max-width:1080px}.site-container .is-style-full-width-feature-wrapper .wp-block-group__inner-container>:last-child{margin-bottom:0}.site-container .is-style-full-width-feature-wrapper .wp-block-group__inner-container>:first-child{margin-top:0}.single-post .entry-content .is-style-full-width-feature-wrapper{width:100%}}.adthrive-device-phone .adthrive-sticky-content{height:450px!important;margin-bottom:100px!important}.adthrive-content.adthrive-sticky{position:-webkit-sticky;position:sticky!important;top:42px!important;margin-top:42px!important}.adthrive-content.adthrive-sticky:after{content:"— Advertisement. Scroll down to continue. —";font-size:10pt;margin-top:5px;margin-bottom:5px;display:block;color:#888}.adthrive-sticky-container{position:relative;display:flex;flex-direction:column;justify-content:flex-start;align-items:center;min-height:250px!important;margin:10px 0;background-color:#fafafa;padding-bottom:0}#feast-advanced-jump-to{z-index:999;border:none;opacity:.97;background:#fcfcfc;border-left:4px solid #ccc;margin-bottom:57px}#feast-advanced-jump-to ul{margin-left:0;margin-bottom:0;padding-left:0;padding:0 30px 16px}#feast-advanced-jump-to summary{min-height:48px;line-height:48px;padding:8px 30px}#feast-advanced-jump-to li{list-style-type:none;margin-bottom:8px}#feast-advanced-jump-to li a{text-decoration:none}#feast-advanced-jump-to{max-height:275px!important;overflow-y:auto}::-webkit-scrollbar{-webkit-appearance:none;width:7px}::-webkit-scrollbar-thumb{border-radius:4px;background-color:rgba(0,0,0,.5);-webkit-box-shadow:0 0 1px rgba(255,255,255,.5)}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-full svg *{fill:#ffffff}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-33 svg *{fill:url(#wprm-recipe-user-rating-0-33)}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-50 svg *{fill:url(#wprm-recipe-user-rating-0-50)}#wprm-recipe-user-rating-0 .wprm-rating-star.wprm-rating-star-66 svg *{fill:url(#wprm-recipe-user-rating-0-66)}linearGradient#wprm-recipe-user-rating-0-33 stop{stop-color:#ffffff}linearGradient#wprm-recipe-user-rating-0-50 stop{stop-color:#ffffff}linearGradient#wprm-recipe-user-rating-0-66 stop{stop-color:#ffffff}#wprm-recipe-user-rating-0.wprm-user-rating-allowed.wprm-user-rating-not-voted:not(.wprm-user-rating-voting) svg *{fill-opacity:0.3}.wp-container-core-columns-is-layout-1{flex-wrap:nowrap}.wp-container-core-columns-is-layout-2{flex-wrap:nowrap}.wp-container-core-columns-is-layout-3{flex-wrap:nowrap}.wp-container-core-columns-is-layout-4{flex-wrap:nowrap}.wp-container-core-columns-is-layout-5{flex-wrap:nowrap}.wp-container-core-columns-is-layout-6{flex-wrap:nowrap}.wp-container-core-columns-is-layout-7{flex-wrap:nowrap}.wp-container-core-columns-is-layout-8{flex-wrap:nowrap}.wp-container-core-columns-is-layout-9{flex-wrap:nowrap}.wp-container-core-buttons-is-layout-1{justify-content:center}.wp-container-core-buttons-is-layout-2{justify-content:center}.wp-container-core-columns-is-layout-10{flex-wrap:nowrap}.wp-container-core-columns-is-layout-11{flex-wrap:nowrap}</style><link rel="preload" data-rocket-preload as="image" href="https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-360x540.jpg" imagesrcset="https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-1024x1536.jpg 1024w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view.jpg 1200w" imagesizes="auto, (max-width: 360px) 100vw, 360px" fetchpriority="high">
<meta name="description" content="Grilled Tacos al Pastor is taco perfection. The marinade is deeply flavorful and grilling he pork adds a huge depth of flavor. Always a hit!" />
<link rel="canonical" href="https://howtofeedaloon.com/grilled-tacos-al-pastor/" />
<meta name="author" content="Kris Longwell" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Kris Longwell" />
<meta name="twitter:label2" content="Est. reading time" />
<meta name="twitter:data2" content="9 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#article","isPartOf":{"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/"},"author":{"name":"Kris Longwell","@id":"https://howtofeedaloon.com/#/schema/person/f2b2e4d7fc1057c866d5d7d437b80381"},"headline":"Grilled Tacos al Pastor","datePublished":"2025-05-04T17:07:41+00:00","dateModified":"2025-05-04T17:07:44+00:00","wordCount":1785,"commentCount":0,"publisher":{"@id":"https://howtofeedaloon.com/#organization"},"image":{"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#primaryimage"},"thumbnailUrl":"https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead.jpg","keywords":["grilling","pork","tacos"],"articleSection":["BBQ (Mains)","Cinco de Mayo","Game-Day Favorites","Grilled","Mexican / Tex-Mex / Cal-Mex"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://howtofeedaloon.com/grilled-tacos-al-pastor/#respond"]}]},{"@type":["WebPage","FAQPage"],"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/","name":"Grilled Tacos al Pastor | How To Feed A Loon","isPartOf":{"@id":"https://howtofeedaloon.com/#website"},"primaryImageOfPage":{"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#primaryimage"},"image":{"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#primaryimage"},"thumbnailUrl":"https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead.jpg","datePublished":"2025-05-04T17:07:41+00:00","dateModified":"2025-05-04T17:07:44+00:00","description":"Grilled Tacos al Pastor is taco perfection. The marinade is deeply flavorful and grilling he pork adds a huge depth of flavor. Always a hit!","breadcrumb":{"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#breadcrumb"},"mainEntity":[{"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#faq-question-1746316532197"},{"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#faq-question-1746316747918"},{"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#faq-question-1746316765437"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://howtofeedaloon.com/grilled-tacos-al-pastor/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#primaryimage","url":"https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead.jpg","contentUrl":"https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead.jpg","width":1200,"height":1800,"caption":"An arrangement of ingredients for grilled tacos al pastor on a white background including dried chiles, spices, pineapple, pork shoulder, sugar, vinegar, and corn tortillas."},{"@type":"BreadcrumbList","@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://howtofeedaloon.com/"},{"@type":"ListItem","position":2,"name":"Recipe Index","item":"https://howtofeedaloon.com/recipes/"},{"@type":"ListItem","position":3,"name":"TexMex / Mexican","item":"https://howtofeedaloon.com/category/texmex/"},{"@type":"ListItem","position":4,"name":"Grilled Tacos al Pastor"}]},{"@type":"WebSite","@id":"https://howtofeedaloon.com/#website","url":"https://howtofeedaloon.com/","name":"How To Feed A Loon","description":"Celebrating Fun, Food and Fabulousness","publisher":{"@id":"https://howtofeedaloon.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://howtofeedaloon.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://howtofeedaloon.com/#organization","name":"How To Feed A Loon","url":"https://howtofeedaloon.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://howtofeedaloon.com/#/schema/logo/image/","url":"https://howtofeedaloon.com/wp-content/uploads/2018/01/loon-logo-2017-130.png","contentUrl":"https://howtofeedaloon.com/wp-content/uploads/2018/01/loon-logo-2017-130.png","width":274,"height":130,"caption":"How To Feed A Loon"},"image":{"@id":"https://howtofeedaloon.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/HowToFeedaLoon/","https://x.com/howtofeedaloon"]},{"@type":"Person","@id":"https://howtofeedaloon.com/#/schema/person/f2b2e4d7fc1057c866d5d7d437b80381","name":"Kris Longwell","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://howtofeedaloon.com/#/schema/person/image/","url":"https://secure.gravatar.com/avatar/b368fee0a2ec78136f0f41c8ec19a961?s=96&d=mm&r=g","contentUrl":"https://secure.gravatar.com/avatar/b368fee0a2ec78136f0f41c8ec19a961?s=96&d=mm&r=g","caption":"Kris Longwell"},"description":"I love to cook, I love to perform, I love my family, including my husband, Wesley Loon. I was raised in Texas and came to New York City in 1989 to pursue theater. That's where I met my Loon. We got married in 1992. I started cooking early on. My biggest fan is my Loon.","sameAs":["https://howtofeedaloon.com/aboutus/"],"birthDate":"1964-10-20","gender":"Male","award":["Best in class","Basic Training Boot Camp for Food Enthusiasts","Culinary Institute of America","NY","2015"],"knowsAbout":["Food Blogging. Recipe Development","Food Photography","Family Meals","Comfort Food","Easy Recipes","Meal Plans","Video Development"],"knowsLanguage":["English"],"jobTitle":"Food Blogger, Founder, Chef, Recipe Developer","worksFor":"How To Feed a Loon, LLC","url":"https://howtofeedaloon.com/author/krislongwell/"},{"@type":"Question","@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#faq-question-1746316532197","position":1,"url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#faq-question-1746316532197","name":"What's the difference between carnitas and al pastor? ","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"They are similar. Carnitas are slow-cooked pork, usually braised or roasted until tender and crispy. Al pastor is marinated and then typically cooked on a spit (like shawarma), with bold spices and pineapple for a sweet, smoky flavor.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#faq-question-1746316747918","position":2,"url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#faq-question-1746316747918","name":"Can I make tacos al pastor at home without a vertical spit?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Yes, you can make tacos al pastor at home by grilling or roasting the marinated pork in the oven or on a grill, then slicing it thinly to serve in warm tortillas.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#faq-question-1746316765437","position":3,"url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#faq-question-1746316765437","name":"What toppings are best for grilled tacos al pastor?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Diced onions, fresh cilantro, pineapple chunks, and a squeeze of lime, <a href=\"https://howtofeedaloon.com/roasted-tomato-salsa/\">roasted tomato salsa</a>, or heated al pastor sauce (reserved from the marinade before adding the pork). ","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Recipe","name":"Grilled Tacos al Pastor","author":{"@id":"https://howtofeedaloon.com/#/schema/person/f2b2e4d7fc1057c866d5d7d437b80381"},"description":"Grilled Tacos al Pastor is a true flavor explosion. Allow the pork to sit in the marinade for at least 12 hours for maximum flavor. If you don't have a skewer plate, you can simply grill the meat on your gas or charcoal grill. You can also roast the meat in the oven. The homemade chili paste can be made up to 2 weeks in advance.","datePublished":"2025-05-04T13:07:41+00:00","image":["https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG.jpg","https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-500x500.jpg","https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-500x375.jpg","https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-480x270.jpg"],"video":{"name":"Grilled Tacos al Pastor","description":"","thumbnailUrl":"https://content.jwplatform.com/thumbs/jauIUUfc-720.jpg","contentUrl":"https://content.jwplatform.com/videos/jauIUUfc.mp4","uploadDate":"2025-05-04T16:36:47+00:00","@type":"VideoObject"},"recipeYield":["6"],"prepTime":"PT30M","cookTime":"PT180M","totalTime":"PT930M","recipeIngredient":["1 cup vegetable oil","20 guajillo chiles (dried, stems and seeds removed)","35 chiles de Arbol (dried, stems and seeds removed)","4 cloves garlic","2 tsp Kosher salt","1 chicken bouillon cube","1 3 lb pork shoulder (boneless)","½ cup pineapple juice","½ cup distilled white vinegar","¼ cup chili paste","¼ cup achiote paste","6 tbsp light brown sugar","4 cloves garlic","1½ tsp oregano (dried, preferably Mexican)","1½ tsp cumin (ground)","1½ tsp black pepper","½ tsp ground cinnamon","¼ tsp ground cloves","2 tbsp Kosher salt","1 whole pineapple","12 corn tortillas","1 cup red onion (finely chopped, for garnish)","cilantro (fresh, chopped, for garnish)","lime wedges (for serving)"],"recipeInstructions":[{"@type":"HowToSection","name":"Make the Chili Paste","itemListElement":[{"@type":"HowToStep","text":"Heat the oil in a large, sturdy skillet over medium heat until shimmering. Add the chiles and garlic and stir to coat with the oil. Simmer in the oil for about 2 minutes. Use a slotted spoon or tongs to carefully remove the chiles and garlic and place them on a platter lined with paper towels.","name":"Heat the oil in a large, sturdy skillet over medium heat until shimmering. Add the chiles and garlic and stir to coat with the oil. Simmer in the oil for about 2 minutes. Use a slotted spoon or tongs to carefully remove the chiles and garlic and place them on a platter lined with paper towels.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-0-0"},{"@type":"HowToStep","text":"Pat the chiles and garlic dry and place them in a large pot. Add just enough water to cover the chiles. Bring to a simmer and cover. Simmer for 7 minutes, or until the chiles are very tender.","name":"Pat the chiles and garlic dry and place them in a large pot. Add just enough water to cover the chiles. Bring to a simmer and cover. Simmer for 7 minutes, or until the chiles are very tender.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-0-1"},{"@type":"HowToStep","text":"Drain the chiles and garlic through a colander into a heatproof bowl, reserving the liquid.","name":"Drain the chiles and garlic through a colander into a heatproof bowl, reserving the liquid.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-0-2"},{"@type":"HowToStep","text":"Transfer the chiles and garlic to a blender. Add the salt, bouillon cube, and 1 cup of the chile water. Purée for 1 minute, until very smooth. Allow the paste to cool down and then transfer to a jar with a tight-fitting lid. Refrigerate for up to 2 weeks.","name":"Transfer the chiles and garlic to a blender. Add the salt, bouillon cube, and 1 cup of the chile water. Purée for 1 minute, until very smooth. Allow the paste to cool down and then transfer to a jar with a tight-fitting lid. Refrigerate for up to 2 weeks.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-0-3"}]},{"@type":"HowToSection","name":"Make the Tacos al Pastor","itemListElement":[{"@type":"HowToStep","text":"Place the pork shoulder in the freezer for 30 minutes (this makes slicing it easier).","name":"Place the pork shoulder in the freezer for 30 minutes (this makes slicing it easier).","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-0"},{"@type":"HowToStep","text":"In a blender, add the pineapple juice, vinegar, oil, chile paste, achiote paste, brown sugar, garlic, oregano, cumin, pepper, cinnamon, cloves, and salt. Purée until smooth. Set aside.","name":"In a blender, add the pineapple juice, vinegar, oil, chile paste, achiote paste, brown sugar, garlic, oregano, cumin, pepper, cinnamon, cloves, and salt. Purée until smooth. Set aside.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-1"},{"@type":"HowToStep","text":"Remove the pork shoulder from the freezer and use a sharp knife to cut it into ¼-inch slices.","name":"Remove the pork shoulder from the freezer and use a sharp knife to cut it into ¼-inch slices.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-2"},{"@type":"HowToStep","text":"Place the pork in a large dish and pour about three-quarters of the marinade over it. Turn the meat over and press the marinade into the pork. Cover and chill for up to 24 hours, preferably overnight. Add the remaining marinade/sauce to a container with a lid and refrigerate.","name":"Place the pork in a large dish and pour about three-quarters of the marinade over it. Turn the meat over and press the marinade into the pork. Cover and chill for up to 24 hours, preferably overnight. Add the remaining marinade/sauce to a container with a lid and refrigerate.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-3"},{"@type":"HowToStep","text":"Prepare your charcoal (or gas) grill to medium-high heat, creating a 2-zone (heat and no-heat) set-up.","name":"Prepare your charcoal (or gas) grill to medium-high heat, creating a 2-zone (heat and no-heat) set-up.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-4"},{"@type":"HowToStep","text":"Cut the top and base off the pineapple. Cut two ½-inch slices. Cut the remaining pineapple into slices or chunks, cutting around the core.","name":"Cut the top and base off the pineapple. Cut two ½-inch slices. Cut the remaining pineapple into slices or chunks, cutting around the core.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-5"},{"@type":"HowToStep","text":"Press one pineapple slice down the skewer and then layer the marinated pork on the skewer. Top with the other pineapple slice.","name":"Press one pineapple slice down the skewer and then layer the marinated pork on the skewer. Top with the other pineapple slice.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-6"},{"@type":"HowToStep","text":"Place the skewer plate over the indirect heat and cover for 1 hour.","name":"Place the skewer plate over the indirect heat and cover for 1 hour.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-7"},{"@type":"HowToStep","text":"After 1 hour, use kitchen shears (or a sharp knife) to cut away dark spots on the edges of the meat. Cover and cook for another 45 minutes.","name":"After 1 hour, use kitchen shears (or a sharp knife) to cut away dark spots on the edges of the meat. Cover and cook for another 45 minutes.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-8"},{"@type":"HowToStep","text":"Add the pineapple slices and cook for another 15 minutes (the meat should cook for 2 hours). Add the extra sauce to a saucepan and gently warm it.","name":"Add the pineapple slices and cook for another 15 minutes (the meat should cook for 2 hours). Add the extra sauce to a saucepan and gently warm it.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-9"},{"@type":"HowToStep","text":"Carefully remove the skewer plate and pineapple from the grill. Cut the pineapple into chunks and use a large, sharp knife to slice pieces of meat from the skewer.","name":"Carefully remove the skewer plate and pineapple from the grill. Cut the pineapple into chunks and use a large, sharp knife to slice pieces of meat from the skewer.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-10"},{"@type":"HowToStep","text":"Serve at once with warmed corn tortillas, garnished with the grilled chopped pineapple, cilantro, onion, warmed sauce, and lime wedges.","name":"Serve at once with warmed corn tortillas, garnished with the grilled chopped pineapple, cilantro, onion, warmed sauce, and lime wedges.","url":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#wprm-recipe-42893-step-1-11"}]}],"recipeCategory":["Lunch / Dinner"],"recipeCuisine":["Mexican"],"keywords":"how to make tacos al pastor, pork tacos recipe","nutrition":{"@type":"NutritionInformation","calories":"247 kcal","carbohydrateContent":"54 g","proteinContent":"5 g","fatContent":"13 g","saturatedFatContent":"0.4 g","cholesterolContent":"0.2 mg","sodiumContent":"678 mg","fiberContent":"8 g","sugarContent":"21 g","unsaturatedFatContent":"2 g","servingSize":"1 serving"},"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#recipe","isPartOf":{"@id":"https://howtofeedaloon.com/grilled-tacos-al-pastor/#article"},"mainEntityOfPage":"https://howtofeedaloon.com/grilled-tacos-al-pastor/"}]}</script>
<!-- / Yoast SEO Premium plugin. -->
<link rel='dns-prefetch' href='//stats.wp.com' />
<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel="alternate" type="application/rss+xml" title="How To Feed A Loon » Feed" href="https://howtofeedaloon.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="How To Feed A Loon » Comments Feed" href="https://howtofeedaloon.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="How To Feed A Loon » Grilled Tacos al Pastor Comments Feed" href="https://howtofeedaloon.com/grilled-tacos-al-pastor/feed/" />
<link id='omgf-preload-0' rel='preload' href='//howtofeedaloon.com/wp-content/uploads/omgf/redux-google-fonts-ti_option/oswald-normal-700.woff2?ver=1648064490' as='font' type='font/woff2' crossorigin />
<link rel="alternate" type="application/rss+xml" title="How To Feed A Loon » Stories Feed" href="https://howtofeedaloon.com/web-stories/feed/">
<style id='wp-block-library-inline-css'></style>
<style id='jetpack-sharing-buttons-style-inline-css'></style>
<style id='classic-theme-styles-inline-css'></style>
<style id='global-styles-inline-css'></style>
<style id='feast-global-styles-inline-css'></style>
<style id='dpsp-frontend-style-pro-inline-css'></style>
<style id='akismet-widget-style-inline-css'></style>
<style id='rocket-lazyload-inline-css'>
.rll-youtube-player{position:relative;padding-bottom:56.23%;height:0;overflow:hidden;max-width:100%;}.rll-youtube-player:focus-within{outline: 2px solid currentColor;outline-offset: 5px;}.rll-youtube-player iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;background:0 0}.rll-youtube-player img{bottom:0;display:block;left:0;margin:auto;max-width:100%;width:100%;position:absolute;right:0;top:0;border:none;height:auto;-webkit-transition:.4s all;-moz-transition:.4s all;transition:.4s all}.rll-youtube-player img:hover{-webkit-filter:brightness(75%)}.rll-youtube-player .play{height:100%;width:100%;left:0;top:0;position:absolute;background:var(--wpr-bg-e02ea09c-30fe-4796-aa99-40f8119f7899) no-repeat center;background-color: transparent !important;cursor:pointer;border:none;}
</style>
<script type="rocketlazyloadscript" data-rocket-src="https://howtofeedaloon.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://howtofeedaloon.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js" data-rocket-defer defer></script>
<link rel="https://api.w.org/" href="https://howtofeedaloon.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://howtofeedaloon.com/wp-json/wp/v2/posts/42866" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://howtofeedaloon.com/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://wp.me/p40gDb-b9o' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://howtofeedaloon.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://howtofeedaloon.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F&format=xml" />
<meta name="generator" content="Redux 4.5.7" /><style id='feast-blockandfront-styles'></style>
<style type="text/css"></style><style type="text/css" id='feastbreadcrumbstylesoverride'></style><style type="text/css" id='feastfoodieprooverrides'></style><meta name="hubbub-info" description="Hubbub Pro 2.25.2"><style type="text/css"></style><style type="text/css"></style> <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-65938294-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-65938294-1');
gtag('config', 'G-EL77SSPEG9');
</script>
<!-- Facebook Pixel Code -->
<script type="rocketlazyloadscript">
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window,document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '532254563794775');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1" src="https://www.facebook.com/tr?id=532254563794775&ev=PageView&noscript=1"/>
</noscript>
<!-- End Facebook Pixel Code -->
<style></style>
<link rel="pingback" href="https://howtofeedaloon.com/xmlrpc.php" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"headline": "Grilled Tacos Al Pastor - How to Feed a Loon",
"about": [
{
"@type": "Thing",
"name": "taco",
"sameAs": "https://en.wikipedia.org/wiki/Taco"
},
{
"@type": "Thing",
"name": "al pastor",
"sameAs": "https://en.wikipedia.org/wiki/Al_pastor"
},
{
"@type": "Thing",
"name": "pork",
"sameAs": "https://en.wikipedia.org/wiki/Pork"
},
{
"@type": "Thing",
"name": "pineapple",
"sameAs": "https://en.wikipedia.org/wiki/Pineapple"
},
{
"@type": "Thing",
"name": "grill",
"sameAs": "https://en.wikipedia.org/wiki/Grilling"
}
],
"mentions": [
{
"@type": "Thing",
"name": "marinade",
"sameAs": "https://en.wikipedia.org/wiki/Marinade"
},
{
"@type": "Thing",
"name": "chipotle",
"sameAs": "https://en.wikipedia.org/wiki/Chipotle_(cuisine)"
},
{
"@type": "Thing",
"name": "spicy",
"sameAs": "https://en.wikipedia.org/wiki/Spice"
},
{
"@type": "Thing",
"name": "Mexican cuisine",
"sameAs": "https://en.wikipedia.org/wiki/Mexican_cuisine"
},
{
"@type": "Thing",
"name": "corn tortilla",
"sameAs": "https://en.wikipedia.org/wiki/Tortilla"
}
]
}
</script> <style></style>
<style id='feast-increase-content-width'></style>
<style id="feast-plus-branding-styles"></style>
<link rel="icon" href="https://howtofeedaloon.com/wp-content/uploads/2020/09/cropped-LOON_LOGO_1-32x32.png" sizes="32x32" />
<link rel="icon" href="https://howtofeedaloon.com/wp-content/uploads/2020/09/cropped-LOON_LOGO_1-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://howtofeedaloon.com/wp-content/uploads/2020/09/cropped-LOON_LOGO_1-180x180.png" />
<meta name="msapplication-TileImage" content="https://howtofeedaloon.com/wp-content/uploads/2020/09/cropped-LOON_LOGO_1-270x270.png" />
<script data-no-optimize='1' data-cfasync='false' id='cls-disable-ads-3471352'>var cls_disable_ads=function(t){"use strict";window.adthriveCLS.buildDate="2025-05-08";const e="Content",i="Recipe";const s=new class{info(t,e,...i){this.call(console.info,t,e,...i)}warn(t,e,...i){this.call(console.warn,t,e,...i)}error(t,e,...i){this.call(console.error,t,e,...i),this.sendErrorLogToCommandQueue(t,e,...i)}event(t,e,...i){var s;"debug"===(null==(s=window.adthriveCLS)?void 0:s.bucket)&&this.info(t,e)}sendErrorLogToCommandQueue(t,e,...i){window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push((()=>{void 0!==window.adthrive.logError&&"function"==typeof window.adthrive.logError&&window.adthrive.logError(t,e,i)}))}call(t,e,i,...s){const o=[`%c${e}::${i} `],a=["color: #999; font-weight: bold;"];s.length>0&&"string"==typeof s[0]&&o.push(s.shift()),a.push(...s);try{Function.prototype.apply.call(t,console,[o.join(""),...a])}catch(t){return void console.error(t)}}},o=t=>{const e=window.location.href;return t.some((t=>new RegExp(t,"i").test(e)))};class a{checkCommandQueue(){this.adthrive&&this.adthrive.cmd&&this.adthrive.cmd.forEach((t=>{const e=t.toString(),i=this.extractAPICall(e,"disableAds");i&&this.disableAllAds(this.extractPatterns(i));const s=this.extractAPICall(e,"disableContentAds");s&&this.disableContentAds(this.extractPatterns(s));const o=this.extractAPICall(e,"disablePlaylistPlayers");o&&this.disablePlaylistPlayers(this.extractPatterns(o))}))}extractPatterns(t){const e=t.match(/["'](.*?)['"]/g);if(null!==e)return e.map((t=>t.replace(/["']/g,"")))}extractAPICall(t,e){const i=new RegExp(e+"\\((.*?)\\)","g"),s=t.match(i);return null!==s&&s[0]}disableAllAds(t){t&&!o(t)||(this.all=!0,this.reasons.add("all_page"))}disableContentAds(t){t&&!o(t)||(this.content=!0,this.recipe=!0,this.locations.add(e),this.locations.add(i),this.reasons.add("content_plugin"))}disablePlaylistPlayers(t){t&&!o(t)||(this.video=!0,this.locations.add("Video"),this.reasons.add("video_page"))}urlHasEmail(t){if(!t)return!1;return null!==/([A-Z0-9._%+-]+(@|%(25)*40)[A-Z0-9.-]+\.[A-Z]{2,})/i.exec(t)}constructor(t){this.adthrive=t,this.all=!1,this.content=!1,this.recipe=!1,this.video=!1,this.locations=new Set,this.reasons=new Set,(this.urlHasEmail(window.location.href)||this.urlHasEmail(window.document.referrer))&&(this.all=!0,this.reasons.add("all_email"));try{this.checkCommandQueue(),null!==document.querySelector(".tag-novideo")&&(this.video=!0,this.locations.add("Video"),this.reasons.add("video_tag"))}catch(t){s.error("ClsDisableAds","checkCommandQueue",t)}}}const n=window.adthriveCLS;return n&&(n.disableAds=new a(window.adthrive)),t.ClsDisableAds=a,t}({});
</script><script data-no-optimize='1' data-cfasync='false' id='cls-header-insertion-3471352'>var cls_header_insertion=function(e){"use strict";window.adthriveCLS.buildDate="2025-05-08";const t="Content",i="Recipe",s="Footer",a="Header_1",n="Header",o="Sidebar";const r=new class{info(e,t,...i){this.call(console.info,e,t,...i)}warn(e,t,...i){this.call(console.warn,e,t,...i)}error(e,t,...i){this.call(console.error,e,t,...i),this.sendErrorLogToCommandQueue(e,t,...i)}event(e,t,...i){var s;"debug"===(null==(s=window.adthriveCLS)?void 0:s.bucket)&&this.info(e,t)}sendErrorLogToCommandQueue(e,t,...i){window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push((()=>{void 0!==window.adthrive.logError&&"function"==typeof window.adthrive.logError&&window.adthrive.logError(e,t,i)}))}call(e,t,i,...s){const a=[`%c${t}::${i} `],n=["color: #999; font-weight: bold;"];s.length>0&&"string"==typeof s[0]&&a.push(s.shift()),n.push(...s);try{Function.prototype.apply.call(e,console,[a.join(""),...n])}catch(e){return void console.error(e)}}},l=(e,t)=>null==e||e!=e?t:e,c=(e=>{const t={};return function(...i){const s=JSON.stringify(i);if(t[s])return t[s];const a=e.apply(this,i);return t[s]=a,a}})((()=>{const e=navigator.userAgent,t=/Tablet|iPad|Playbook|Nook|webOS|Kindle|Android (?!.*Mobile).*Safari|CrOS/i.test(e);return/Mobi|iP(hone|od)|Opera Mini/i.test(e)&&!t})),d=["siteId","siteName","adOptions","breakpoints","adUnits"],h=(e,t=d)=>{if(!e)return!1;for(let i=0;i<t.length;i++)if(!e[t[i]])return!1;return!0};class u{}class m extends u{get(){if(this._probability<0||this._probability>1)throw new Error(`Invalid probability: ${this._probability}`);return Math.random()<this._probability}constructor(e){super(),this._probability=e}}class b{get enabled(){return!!this._clsGlobalData&&!!this._clsGlobalData.siteAds&&h(this._clsGlobalData.siteAds)}get error(){return!(!this._clsGlobalData||!this._clsGlobalData.error)}set siteAds(e){this._clsGlobalData.siteAds=e}get siteAds(){return this._clsGlobalData.siteAds}set disableAds(e){this._clsGlobalData.disableAds=e}get disableAds(){return this._clsGlobalData.disableAds}set enabledLocations(e){this._clsGlobalData.enabledLocations=e}get enabledLocations(){return this._clsGlobalData.enabledLocations}get injectedFromPlugin(){return this._clsGlobalData.injectedFromPlugin}set injectedFromPlugin(e){this._clsGlobalData.injectedFromPlugin=e}get injectedFromSiteAds(){return this._clsGlobalData.injectedFromSiteAds}set injectedFromSiteAds(e){this._clsGlobalData.injectedFromSiteAds=e}overwriteInjectedSlots(e){this._clsGlobalData.injectedSlots=e}setInjectedSlots(e){this._clsGlobalData.injectedSlots=this._clsGlobalData.injectedSlots||[],this._clsGlobalData.injectedSlots.push(e)}get injectedSlots(){return this._clsGlobalData.injectedSlots}setInjectedVideoSlots(e){this._clsGlobalData.injectedVideoSlots=this._clsGlobalData.injectedVideoSlots||[],this._clsGlobalData.injectedVideoSlots.push(e)}get injectedVideoSlots(){return this._clsGlobalData.injectedVideoSlots}setInjectedScripts(e){this._clsGlobalData.injectedScripts=this._clsGlobalData.injectedScripts||[],this._clsGlobalData.injectedScripts.push(e)}get getInjectedScripts(){return this._clsGlobalData.injectedScripts}setExperiment(e,t,i=!1){this._clsGlobalData.experiments=this._clsGlobalData.experiments||{},this._clsGlobalData.siteExperiments=this._clsGlobalData.siteExperiments||{};(i?this._clsGlobalData.siteExperiments:this._clsGlobalData.experiments)[e]=t}getExperiment(e,t=!1){const i=t?this._clsGlobalData.siteExperiments:this._clsGlobalData.experiments;return i&&i[e]}setWeightedChoiceExperiment(e,t,i=!1){this._clsGlobalData.experimentsWeightedChoice=this._clsGlobalData.experimentsWeightedChoice||{},this._clsGlobalData.siteExperimentsWeightedChoice=this._clsGlobalData.siteExperimentsWeightedChoice||{};(i?this._clsGlobalData.siteExperimentsWeightedChoice:this._clsGlobalData.experimentsWeightedChoice)[e]=t}getWeightedChoiceExperiment(e,t=!1){var i,s;const a=t?null==(i=this._clsGlobalData)?void 0:i.siteExperimentsWeightedChoice:null==(s=this._clsGlobalData)?void 0:s.experimentsWeightedChoice;return a&&a[e]}get branch(){return this._clsGlobalData.branch}get bucket(){return this._clsGlobalData.bucket}set videoDisabledFromPlugin(e){this._clsGlobalData.videoDisabledFromPlugin=e}get videoDisabledFromPlugin(){return this._clsGlobalData.videoDisabledFromPlugin}set targetDensityLog(e){this._clsGlobalData.targetDensityLog=e}get targetDensityLog(){return this._clsGlobalData.targetDensityLog}getIOSDensity(e){const t=[{weight:100,adDensityPercent:0},{weight:0,adDensityPercent:25},{weight:0,adDensityPercent:50}],i=t.map((e=>e.weight)),{index:s}=(e=>{const t={index:-1,weight:-1};if(!e||0===e.length)return t;const i=e.reduce(((e,t)=>e+t),0);if(0===i)return t;const s=Math.random()*i;let a=0,n=e[a];for(;s>n;)n+=e[++a];return{index:a,weight:e[a]}})(i),a=e-e*(t[s].adDensityPercent/100);return this.setWeightedChoiceExperiment("iosad",t[s].adDensityPercent),a}getTargetDensity(e){return((e=navigator.userAgent)=>/iP(hone|od|ad)/i.test(e))()?this.getIOSDensity(e):e}get removeVideoTitleWrapper(){return this._clsGlobalData.siteAds.adOptions.removeVideoTitleWrapper}constructor(){this._clsGlobalData=window.adthriveCLS}}class p{setExperimentKey(e=!1){this._clsOptions.setExperiment(this.abgroup,this.result,e)}constructor(){this._clsOptions=new b,this.shouldUseCoreExperimentsConfig=!1}}class g extends p{get result(){return this._result}run(){return new m(this.weight).get()}constructor(e){super(),this._result=!1,this.key="ParallaxAdsExperiment",this.abgroup="parallax",this._choices=[{choice:!0},{choice:!1}],this.weight=0;!!c()&&e.largeFormatsMobile&&(this._result=this.run(),this.setExperimentKey())}}const y=[[728,90],[300,250],[300,600],[320,50],[970,250],[160,600],[300,1050],[336,280],[970,90],[300,50],[320,100],[468,60],[250,250],[120,240],[1,1],[300,300],[552,334],[300,420],[728,250],[320,300],[300,390]],_=[[300,600],[160,600]],D=new Map([[s,1],[n,2],[o,3],[t,4],[i,5],["Sidebar_sticky",6],["Below Post",7]]),v=(e,t)=>{const{location:a,sticky:n}=e;if(a===i&&t){const{recipeMobile:e,recipeDesktop:i}=t;if(c()&&(null==e?void 0:e.enabled))return!0;if(!c()&&(null==i?void 0:i.enabled))return!0}return a===s||n},S=(e,a)=>{const r=a.adUnits,d=(e=>!!e.adTypes&&new g(e.adTypes).result)(a);return r.filter((e=>void 0!==e.dynamic&&e.dynamic.enabled)).map((r=>{const h=r.location.replace(/\s+/g,"_"),u="Sidebar"===h?0:2;return{auctionPriority:D.get(h)||8,location:h,sequence:l(r.sequence,1),sizes:(m=r.adSizes,y.filter((([e,t])=>m.some((([i,s])=>e===i&&t===s))))).filter((t=>((e,[t,a],r)=>{const{location:l,sequence:d}=e;if(l===s)return!("phone"===r&&320===t&&100===a);if(l===n)return!0;if(l===i)return!(c()&&"phone"===r&&(300===t&&390===a||320===t&&300===a));if(l===o){const t=e.adSizes.some((([,e])=>e<=300)),i=a>300;return!(!i||t)||9===d||(d&&d<=5?!i||e.sticky:!i)}return!0})(r,t,e))).concat(d&&r.location===t?_:[]),devices:r.devices,pageSelector:l(r.dynamic.pageSelector,"").trim(),elementSelector:l(r.dynamic.elementSelector,"").trim(),position:l(r.dynamic.position,"beforebegin"),max:Math.floor(l(r.dynamic.max,0)),spacing:l(r.dynamic.spacing,0),skip:Math.floor(l(r.dynamic.skip,0)),every:Math.max(Math.floor(l(r.dynamic.every,1)),1),classNames:r.dynamic.classNames||[],sticky:v(r,a.adOptions.stickyContainerConfig),stickyOverlapSelector:l(r.stickyOverlapSelector,"").trim(),autosize:r.autosize,special:l(r.targeting,[]).filter((e=>"special"===e.key)).reduce(((e,t)=>e.concat(...t.value)),[]),lazy:l(r.dynamic.lazy,!1),lazyMax:l(r.dynamic.lazyMax,u),lazyMaxDefaulted:0!==r.dynamic.lazyMax&&!r.dynamic.lazyMax,name:r.name};var m}))},w=(e,t)=>{const i=(e=>{let t=e.clientWidth;if(getComputedStyle){const i=getComputedStyle(e,null);t-=parseFloat(i.paddingLeft||"0")+parseFloat(i.paddingRight||"0")}return t})(t),s=e.sticky&&e.location===o;return e.sizes.filter((t=>{const a=!e.autosize||(t[0]<=i||t[0]<=320),n=!s||t[1]<=window.innerHeight-100;return a&&n}))},f=e=>`adthrive-${e.location.replace("_","-").toLowerCase()}`;class G{start(){try{const e=S(this._device,this.adthriveCLS.siteAds).filter((e=>this.locationEnabled(e))).filter((e=>{return t=e,i=this._device,t.devices.includes(i);var t,i}));for(let t=0;t<e.length;t++)window.requestAnimationFrame(this.inject.bind(this,e[t],document))}catch(e){r.error("ClsHeaderInjector","start",e)}}inject(e,t=document){if("complete"===document.readyState)return;if(0!==e.pageSelector.length){if(!document.querySelector(e.pageSelector))return void window.requestAnimationFrame(this.inject.bind(this,e,document))}const i=this.getElements(e.elementSelector,t);if(i){const s=this.getDynamicElementId(e),n=f(e),o=(e=>`${f(e)}-${e.sequence}`)(e),r=[n,o,...e.classNames],l=this.addAd(i,s,e.position,r);if(l){const i=w(e,l);if(i.length>0){const s={clsDynamicAd:e,dynamicAd:e,element:l,sizes:i,name:a,infinite:t!==document};this.adthriveCLS.injectedSlots.some((e=>e.name===a))||this.adthriveCLS.injectedSlots.push(s),l.style.minHeight=this.deviceToMinHeight[this._device]}}}else window.requestAnimationFrame(this.inject.bind(this,e,document))}getDynamicElementId(e){return`AdThrive_${e.location}_${e.sequence}_${this._device}`}getElements(e,t=document){return t.querySelector(e)}addAd(e,t,i,s=[]){if(!document.getElementById(t)){const a=`<div id="${t}" class="adthrive-ad ${s.join(" ")}"></div>`;e.insertAdjacentHTML(i,a)}return document.getElementById(t)}locationEnabled(e){return!(this.adthriveCLS.disableAds&&this.adthriveCLS.disableAds.all)&&e.location===n&&1===e.sequence&&1===e.max&&0===e.spacing}constructor(e){this.adthriveCLS=e,this.deviceToMinHeight={desktop:"90px",tablet:"90px",phone:"50px"};const{tablet:t,desktop:i}=this.adthriveCLS.siteAds.breakpoints;this._device=((e,t)=>{const i=window.innerWidth;return i>=t?"desktop":i>=e?"tablet":"phone"})(t,i)}}return(()=>{const e=window.adthriveCLS;e&&e.siteAds&&h(e.siteAds)&&window.requestAnimationFrame&&new G(e).start()})(),e.ClsHeaderInjector=G,e}({});
</script><noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript><style id="wpr-lazyload-bg-container"></style><style id="wpr-lazyload-bg-exclusion"></style>
<noscript>
<style id="wpr-lazyload-bg-nostyle">.search-form input{--wpr-bg-309fcc98-7072-4ffc-8950-8a44ba95e503: url('https://howtofeedaloon.com/wp-content/plugins/feast-plugin/assets/images/search.svg');}.is-style-group-lightbulb::before{--wpr-bg-338a52e9-7e9b-4f3a-a893-52850f566fa6: url('https://howtofeedaloon.com/wp-content/plugins/feast-plugin/assets/images/lightbulb.svg');}#feast-advanced-jump-to summary::after{--wpr-bg-3389a1fa-b3ff-44ae-bedd-a993500e0b68: url('https://howtofeedaloon.com/wp-content/plugins/feast-plugin/assets/images/chevron-down.svg');}.rll-youtube-player .play{--wpr-bg-e02ea09c-30fe-4796-aa99-40f8119f7899: url('https://howtofeedaloon.com/wp-content/plugins/wp-rocket/assets/img/youtube.png');}</style>
</noscript>
<script type="application/javascript">const rocket_pairs = [{"selector":".search-form input","style":".search-form input{--wpr-bg-309fcc98-7072-4ffc-8950-8a44ba95e503: url('https:\/\/howtofeedaloon.com\/wp-content\/plugins\/feast-plugin\/assets\/images\/search.svg');}","hash":"309fcc98-7072-4ffc-8950-8a44ba95e503","url":"https:\/\/howtofeedaloon.com\/wp-content\/plugins\/feast-plugin\/assets\/images\/search.svg"},{"selector":".is-style-group-lightbulb","style":".is-style-group-lightbulb::before{--wpr-bg-338a52e9-7e9b-4f3a-a893-52850f566fa6: url('https:\/\/howtofeedaloon.com\/wp-content\/plugins\/feast-plugin\/assets\/images\/lightbulb.svg');}","hash":"338a52e9-7e9b-4f3a-a893-52850f566fa6","url":"https:\/\/howtofeedaloon.com\/wp-content\/plugins\/feast-plugin\/assets\/images\/lightbulb.svg"},{"selector":"#feast-advanced-jump-to summary","style":"#feast-advanced-jump-to summary::after{--wpr-bg-3389a1fa-b3ff-44ae-bedd-a993500e0b68: url('https:\/\/howtofeedaloon.com\/wp-content\/plugins\/feast-plugin\/assets\/images\/chevron-down.svg');}","hash":"3389a1fa-b3ff-44ae-bedd-a993500e0b68","url":"https:\/\/howtofeedaloon.com\/wp-content\/plugins\/feast-plugin\/assets\/images\/chevron-down.svg"},{"selector":".rll-youtube-player .play","style":".rll-youtube-player .play{--wpr-bg-e02ea09c-30fe-4796-aa99-40f8119f7899: url('https:\/\/howtofeedaloon.com\/wp-content\/plugins\/wp-rocket\/assets\/img\/youtube.png');}","hash":"e02ea09c-30fe-4796-aa99-40f8119f7899","url":"https:\/\/howtofeedaloon.com\/wp-content\/plugins\/wp-rocket\/assets\/img\/youtube.png"}]; const rocket_excluded_pairs = [];</script><meta name="generator" content="WP Rocket 3.18.2" data-wpr-features="wpr_lazyload_css_bg_img wpr_remove_unused_css wpr_delay_js wpr_defer_js wpr_lazyload_images wpr_lazyload_iframes wpr_oci wpr_image_dimensions wpr_minify_css wpr_preload_links wpr_dns_prefetch" /></head>
<body data-rsssl=1 class="post-template-default single single-post postid-42866 single-format-standard has-grow-sidebar header-full-width content-sidebar genesis-breadcrumbs-hidden grow-content-body feast-plugin wp-6-7-2 fp-13-0-1 feast-plus adthrive-cat-bbq-mains adthrive-cat-cinco-de-mayo adthrive-cat-game-day-favorites adthrive-cat-grilled adthrive-cat-mexican-tex-mex-cal-mex"><div class="site-container"><header class="site-header"><div class="wrap"><div class="title-area"><p class="site-title"><a href="https://howtofeedaloon.com/" data-wpel-link="internal">How To Feed A Loon</a></p></div></div></header><nav class="nav-primary" aria-label="Main"><div class="wrap"><ul id="menu-main-menu" class="menu genesis-nav-menu menu-primary"><li id="menu-item-8478" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8478"><a href="https://howtofeedaloon.com/aboutus/" data-wpel-link="internal"><span >About Us</span></a></li>
<li id="menu-item-1603" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1603"><a href="https://howtofeedaloon.com/recipes/" data-wpel-link="internal"><span >Recipe Index</span></a>
<ul class="sub-menu">
<li id="menu-item-1616" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1616"><a href="https://howtofeedaloon.com/category/appetizers/" data-wpel-link="internal"><span >Appetizers</span></a></li>
<li id="menu-item-1617" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1617"><a href="https://howtofeedaloon.com/category/asian/" data-wpel-link="internal"><span >Asian</span></a></li>
<li id="menu-item-1618" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1618"><a href="https://howtofeedaloon.com/category/breads-and-doughs/" data-wpel-link="internal"><span >Breads and Doughs</span></a></li>
<li id="menu-item-1619" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1619"><a href="https://howtofeedaloon.com/category/cajun-creole-louisiana/" data-wpel-link="internal"><span >Cajun / Creole / Louisiana</span></a></li>
<li id="menu-item-1620" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1620"><a href="https://howtofeedaloon.com/category/cele-brunch/" data-wpel-link="internal"><span >Breakfast / Brunch</span></a></li>
<li id="menu-item-1621" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1621"><a href="https://howtofeedaloon.com/category/comfort-food/" data-wpel-link="internal"><span >Comfort Food</span></a></li>
<li id="menu-item-1622" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1622"><a href="https://howtofeedaloon.com/category/delectable-desserts/" data-wpel-link="internal"><span >Delectable Desserts</span></a></li>
<li id="menu-item-1623" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1623"><a href="https://howtofeedaloon.com/category/entrees-mains/" data-wpel-link="internal"><span >Entrees / Mains</span></a></li>
<li id="menu-item-10083" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-10083"><a href="https://howtofeedaloon.com/category/instant-pot/" data-wpel-link="internal"><span >Instant Pot</span></a></li>
<li id="menu-item-1624" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1624"><a href="https://howtofeedaloon.com/category/italian/" data-wpel-link="internal"><span >Italian</span></a></li>
<li id="menu-item-1627" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1627"><a href="https://howtofeedaloon.com/category/pizza/" data-wpel-link="internal"><span >Pizza</span></a></li>
<li id="menu-item-1628" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1628"><a href="https://howtofeedaloon.com/category/sauces-dressings-and-dips/" data-wpel-link="internal"><span >Rubs, Spices and Sauces</span></a></li>
<li id="menu-item-1629" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1629"><a href="https://howtofeedaloon.com/category/soups-salads/" data-wpel-link="internal"><span >Soups & Salads</span></a></li>
<li id="menu-item-1630" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1630"><a href="https://howtofeedaloon.com/category/scrumptious-sides/" data-wpel-link="internal"><span >Sides</span></a></li>
<li id="menu-item-1631" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1631"><a href="https://howtofeedaloon.com/category/seafood/" data-wpel-link="internal"><span >Seafood</span></a></li>
<li id="menu-item-1632" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1632"><a href="https://howtofeedaloon.com/category/southern/" data-wpel-link="internal"><span >Southern</span></a></li>
<li id="menu-item-1634" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-1634"><a href="https://howtofeedaloon.com/category/mexican-tex-mex-cal-mex/" data-wpel-link="internal"><span >Mexican / Tex-Mex / Cal-Mex</span></a></li>
<li id="menu-item-1615" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1615"><a href="https://howtofeedaloon.com/category/thanksgiving/" data-wpel-link="internal"><span >Thanksgiving</span></a></li>
<li id="menu-item-31940" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31940"><a href="https://howtofeedaloon.com/category/vegetarian/" data-wpel-link="internal"><span >Vegetarian</span></a></li>
</ul>
</li>
<li id="menu-item-7039" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-7039"><a href="https://www.youtube.com/channel/UCF4juqn-kPpzveBzlHeiSFQ" data-wpel-link="external"><span >Videos</span></a>
<ul class="sub-menu">
<li id="menu-item-29878" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-29878"><a href="https://www.youtube.com/channel/UCF4juqn-kPpzveBzlHeiSFQ" data-wpel-link="external"><span >Recipe Videos</span></a></li>
<li id="menu-item-29877" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-29877"><a href="https://howtofeedaloon.com/web-stories/" data-wpel-link="internal"><span >Web Stories</span></a></li>
</ul>
</li>
<li id="menu-item-8484" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8484"><a href="https://howtofeedaloon.com/work-with-us/" data-wpel-link="internal"><span >Work With Us</span></a></li>
<li id="menu-item-1599" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1599"><a href="https://howtofeedaloon.com/contact/" data-wpel-link="internal"><span >Contact</span></a></li>
<li id="menu-item-27408" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27408"><a href="https://howtofeedaloon.com/premium-access/" data-wpel-link="internal"><span >**Premium Access**</span></a></li>
<li id="menu-item-39048" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39048"><a href="https://howtofeedaloon.com/recipes/" data-wpel-link="internal"><span >Recipes</span></a></li>
</ul></div></nav><div class="feastmobilenavbar"><div class="feastmenutoggle"><a href="#feastmobilemenu"><?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="//www.w3.org/2000/svg" xmlns:xlink="//www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 459 459" style="enable-background:new 0 0 459 459;" xml:space="preserve" aria-labelledby="menuicon" role="img">
<title id="menuicon">menu icon</title>
<g id="menu">
<path fill="currentColor" d="M0,382.5h459v-51H0V382.5z M0,255h459v-51H0V255z M0,76.5v51h459v-51H0z"/>
</g>
</svg>
</a></div><div class="feastmenulogo"><a href="https://howtofeedaloon.com" data-wpel-link="internal"><img src="https://howtofeedaloon.com/wp-content/uploads/2025/02/logo-regular.jpg" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/02/logo-retina.jpg 2x" alt="go to homepage" data-skip-lazy data-pin-nopin="true" height="70" width="200" fetchpriority="high" /></a></div><nav class="desktop-inline-modern-menu"><ul id="menu-feast-modern-mobile-menu" class="menu"><li id="menu-item-42911" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-42911"><a href="https://howtofeedaloon.com/category/cele-brunch/" data-wpel-link="internal">Mother's Day Brunch</a></li>
<li id="menu-item-39029" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39029"><a href="https://howtofeedaloon.com/recipes/" data-wpel-link="internal">Recipes</a></li>
<li id="menu-item-39028" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39028"><a href="https://howtofeedaloon.com/aboutus/" data-wpel-link="internal">About Us</a></li>
<li id="menu-item-39032" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39032"><a href="https://howtofeedaloon.com/work-with-us/" data-wpel-link="internal">Work With Us</a></li>
<li id="menu-item-39031" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39031"><a href="https://howtofeedaloon.com/premium-access/" data-wpel-link="internal">Premium</a></li>
</ul></nav><div class="modern-menu-desktop-social"><div id="feast-social">
<div class="feast-layout feast-layout--menu-social-icons feast-menu-social-icons">
<div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="150" height="225" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20225'%3E%3C/svg%3E" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2-150x225.jpeg"><noscript><img width="150" height="225" decoding="async" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2-150x225.jpeg" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" loading="lazy"></noscript></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="150" height="225" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20225'%3E%3C/svg%3E" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3-150x225.jpeg"><noscript><img width="150" height="225" decoding="async" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3-150x225.jpeg" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" loading="lazy"></noscript></div><div class="feast-social-media feast-social-media--align-center"><a class="social-media__link" href="https://www.instagram.com/howtofeedaloon/" target="_blank" rel="noopener noreferrer" aria-label="Instagram" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 448 512" width="20px" height="20px" role="graphics-symbol" aria-label="Instagram Icon"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" fill="black"></path></svg></a><a class="social-media__link" href="https://www.facebook.com/HowToFeedaLoon" target="_blank" rel="noopener noreferrer" aria-label="Facebook" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 320 512" width="20px" height="20px" role="graphics-symbol" aria-label="Facebook Icon"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" fill="black"></path></svg></a><a class="social-media__link" href="https://www.pinterest.com/howtofeedaloon/" target="_blank" rel="noopener noreferrer" aria-label="Pinterest" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 384 512" width="20px" height="20px" role="graphics-symbol" aria-label="Pinterest Icon"><path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" fill="black"></path></svg></a><a class="social-media__link" href="https://www.youtube.com/channel/UCF4juqn-kPpzveBzlHeiSFQ?sub_confirmation=1" target="_blank" rel="noopener noreferrer" aria-label="Youtube" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 576 512" width="20px" height="20px" role="graphics-symbol" aria-label="YouTube Icon"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" fill="black"></path></svg></a></div>
</div>
</div></div><div class="feastsubscribebutton"><a href="/subscribe/" data-wpel-link="internal"><svg id="svg" version="1.1" xmlns="//www.w3.org/2000/svg" xmlns:xlink="//www.w3.org/1999/xlink" height="30px" width="90px" viewBox="0, 0, 400,62.365591397849464">
<title>subscribe</title>
<g id="svgg">
<path fill="currentColor" id="path0" d="M26.050 5.330 C 19.725 7.308,15.771 12.123,15.771 17.846 C 15.771 25.406,19.962 29.225,32.891 33.446 C 48.466 38.530,48.556 50.896,33.017 50.896 C 25.829 50.896,22.500 48.560,20.505 42.115 C 19.726 39.597,14.337 40.411,14.337 43.046 C 14.337 56.105,41.674 61.606,48.769 49.975 C 54.448 40.665,48.765 31.572,34.767 27.571 C 23.980 24.488,20.269 20.193,23.310 14.313 C 27.257 6.680,43.728 9.562,43.728 17.886 C 43.728 19.171,44.177 19.355,47.312 19.355 C 49.283 19.355,50.896 19.252,50.896 19.127 C 50.896 9.148,37.546 1.734,26.050 5.330 M160.932 4.926 C 143.613 9.505,145.768 26.536,164.445 32.693 C 175.194 36.236,177.778 38.236,177.778 43.011 C 177.778 53.848,156.854 53.818,154.473 42.977 C 153.842 40.106,147.658 39.647,147.686 42.473 C 147.827 56.888,176.357 61.890,183.180 48.696 C 187.688 39.978,182.226 32.186,168.371 27.569 C 156.805 23.715,152.605 17.927,157.885 13.118 C 164.593 7.008,177.778 10.406,177.778 18.244 C 177.778 19.087,178.577 19.355,181.097 19.355 L 184.417 19.355 183.994 16.747 C 182.636 8.383,170.802 2.317,160.932 4.926 M205.522 5.288 C 193.113 9.929,187.498 27.839,193.471 43.728 C 200.113 61.398,225.168 60.783,229.987 42.832 L 230.709 40.143 227.272 40.143 C 224.006 40.143,223.813 40.253,223.393 42.354 C 221.152 53.560,205.804 54.266,200.382 43.412 C 197.373 37.389,197.248 24.155,200.140 17.838 C 205.236 6.706,220.504 7.247,223.462 18.664 C 224.326 21.998,230.667 22.645,230.225 19.355 C 228.759 8.450,216.195 1.295,205.522 5.288 M58.781 24.396 C 58.781 45.482,59.019 47.008,62.941 51.141 C 70.903 59.530,87.303 57.865,93.053 48.085 L 94.982 44.803 95.203 24.910 L 95.424 5.018 92.199 5.018 L 88.974 5.018 88.752 24.194 C 88.469 48.664,87.490 50.887,76.988 50.893 C 66.447 50.900,65.236 48.111,65.234 23.835 L 65.233 5.018 62.007 5.018 L 58.781 5.018 58.781 24.396 M106.093 30.538 L 106.093 56.059 118.100 55.784 C 131.707 55.472,134.341 54.673,138.131 49.704 C 142.597 43.849,140.283 32.689,134.070 30.116 L 131.852 29.197 134.377 27.481 C 140.228 23.505,140.846 14.573,135.646 9.123 C 132.673 6.006,128.030 5.018,116.357 5.018 L 106.093 5.018 106.093 30.538 M240.143 30.466 L 240.143 55.914 243.369 55.914 L 246.595 55.914 246.595 45.520 L 246.595 35.125 252.509 35.126 L 258.423 35.127 264.025 45.521 L 269.628 55.914 273.190 55.914 C 276.653 55.914,276.730 55.869,275.923 54.301 C 275.467 53.414,272.875 48.634,270.163 43.679 C 264.354 33.065,264.551 34.140,268.014 31.954 C 278.032 25.630,275.856 9.891,264.455 6.209 C 261.718 5.325,258.109 5.018,250.455 5.018 L 240.143 5.018 240.143 30.466 M284.588 30.466 L 284.588 55.914 287.814 55.914 L 291.039 55.914 291.039 30.466 L 291.039 5.018 287.814 5.018 L 284.588 5.018 284.588 30.466 M303.226 30.466 L 303.226 55.914 313.953 55.914 C 325.859 55.914,330.021 55.026,333.601 51.722 C 339.739 46.056,339.150 35.284,332.463 30.920 L 329.863 29.224 332.594 26.619 C 336.044 23.329,337.133 19.713,336.111 14.946 C 334.474 7.313,329.244 5.018,313.490 5.018 L 303.226 5.018 303.226 30.466 M348.387 30.466 L 348.387 55.914 364.559 55.914 L 380.732 55.914 380.509 53.226 L 380.287 50.538 367.563 50.342 L 354.839 50.146 354.839 41.202 L 354.839 32.258 365.950 32.258 L 377.061 32.258 377.061 29.749 L 377.061 27.240 365.950 27.240 L 354.839 27.240 354.839 18.996 L 354.839 10.753 367.384 10.753 L 379.928 10.753 379.928 7.885 L 379.928 5.018 364.158 5.018 L 348.387 5.018 348.387 30.466 M129.099 11.862 C 132.543 13.644,133.822 19.465,131.498 22.784 C 129.472 25.675,126.727 26.523,119.390 26.523 L 112.545 26.523 112.545 18.638 L 112.545 10.753 119.749 10.753 C 124.849 10.753,127.579 11.077,129.099 11.862 M263.574 12.151 C 266.573 13.979,267.549 15.950,267.549 20.179 C 267.549 27.041,264.112 29.448,253.584 29.960 L 246.595 30.299 246.595 20.526 L 246.595 10.753 253.943 10.755 C 259.953 10.758,261.706 11.011,263.574 12.151 M328.021 13.122 C 333.818 19.868,328.285 26.523,316.881 26.523 L 310.394 26.523 310.394 18.575 L 310.394 10.626 318.343 10.868 C 326.030 11.103,326.349 11.177,328.021 13.122 M129.773 33.345 C 133.706 35.379,135.094 40.558,133.031 45.495 C 131.463 49.248,128.894 50.179,120.107 50.179 L 112.545 50.179 112.545 41.219 L 112.545 32.258 120.107 32.258 C 125.465 32.258,128.283 32.575,129.773 33.345 M329.093 34.958 C 332.751 39.055,331.571 46.679,326.905 49.092 C 325.435 49.852,322.636 50.179,317.598 50.179 L 310.394 50.179 310.394 41.157 L 310.394 32.135 318.698 32.376 L 327.003 32.616 329.093 34.958 " stroke="none" fill-rule="evenodd"></path>
</g>
</svg>
</a></div><div class="feastsearchtoggle"><a href="#feastmobilemenu"><svg xmlns="//www.w3.org/2000/svg" xmlns:xlink="//www.w3.org/1999/xlink" xml:space="preserve" xmlns:svg="//www.w3.org/2000/svg" version="1.1" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 100 100" aria-labelledby="searchicon" role="img">
<title id="searchicon">search icon</title>
<g transform="translate(0,-952.36218)">
<path fill="currentColor" d="M 40 11 C 24.007431 11 11 24.00743 11 40 C 11 55.9926 24.007431 69 40 69 C 47.281794 69 53.935267 66.28907 59.03125 61.84375 L 85.59375 88.40625 C 86.332786 89.16705 87.691654 89.1915 88.4375 88.4375 C 89.183345 87.6834 89.175154 86.2931 88.40625 85.5625 L 61.875 59.03125 C 66.312418 53.937244 69 47.274551 69 40 C 69 24.00743 55.992569 11 40 11 z M 40 15 C 53.830808 15 65 26.16919 65 40 C 65 53.8308 53.830808 65 40 65 C 26.169192 65 15 53.8308 15 40 C 15 26.16919 26.169192 15 40 15 z " transform="translate(0,952.36218)">
</path>
</g>
</svg>
</a></div></div><div id="feastmobilemenu" class="feastmobilemenu-background" aria-label="main"><div class="mmm-dialog"><div class="mmm-content"><a href="https://howtofeedaloon.com" data-wpel-link="internal"><img width="400" height="140" id="mmmlogo" src="https://howtofeedaloon.com/wp-content/uploads/2025/02/logo-regular.jpg" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/02/logo-retina.jpg 2x" alt="Homepage link" data-pin-nopin="true" fetchpriority="high" /></a><div id="feast-mobile-search"><form class="search-form" method="get" action="https://howtofeedaloon.com/" role="search"><input class="search-form-input" type="search" name="s" id="searchform-1" placeholder="Search this website"><input class="search-form-submit" type="submit" value="Search"><meta content="https://howtofeedaloon.com/?s={s}"></form></div><ul id="menu-feast-modern-mobile-menu-1" class="menu"><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-42911"><a href="https://howtofeedaloon.com/category/cele-brunch/" data-wpel-link="internal">Mother's Day Brunch</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39029"><a href="https://howtofeedaloon.com/recipes/" data-wpel-link="internal">Recipes</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39028"><a href="https://howtofeedaloon.com/aboutus/" data-wpel-link="internal">About Us</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39032"><a href="https://howtofeedaloon.com/work-with-us/" data-wpel-link="internal">Work With Us</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39031"><a href="https://howtofeedaloon.com/premium-access/" data-wpel-link="internal">Premium</a></li>
</ul><div id="feast-mobile-menu-social-icons"><div id="feast-social">
<div class="feast-layout feast-layout--menu-social-icons feast-menu-social-icons">
<div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="150" height="225" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20225'%3E%3C/svg%3E" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2-150x225.jpeg"><noscript><img width="150" height="225" decoding="async" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2-150x225.jpeg" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" loading="lazy"></noscript></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="150" height="225" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20225'%3E%3C/svg%3E" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3-150x225.jpeg"><noscript><img width="150" height="225" decoding="async" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3-150x225.jpeg" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" loading="lazy"></noscript></div><div class="feast-social-media feast-social-media--align-center"><a class="social-media__link" href="https://www.instagram.com/howtofeedaloon/" target="_blank" rel="noopener noreferrer" aria-label="Instagram" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 448 512" width="20px" height="20px" role="graphics-symbol" aria-label="Instagram Icon"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" fill="black"></path></svg></a><a class="social-media__link" href="https://www.facebook.com/HowToFeedaLoon" target="_blank" rel="noopener noreferrer" aria-label="Facebook" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 320 512" width="20px" height="20px" role="graphics-symbol" aria-label="Facebook Icon"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" fill="black"></path></svg></a><a class="social-media__link" href="https://www.pinterest.com/howtofeedaloon/" target="_blank" rel="noopener noreferrer" aria-label="Pinterest" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 384 512" width="20px" height="20px" role="graphics-symbol" aria-label="Pinterest Icon"><path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" fill="black"></path></svg></a><a class="social-media__link" href="https://www.youtube.com/channel/UCF4juqn-kPpzveBzlHeiSFQ?sub_confirmation=1" target="_blank" rel="noopener noreferrer" aria-label="Youtube" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 576 512" width="20px" height="20px" role="graphics-symbol" aria-label="YouTube Icon"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" fill="black"></path></svg></a></div>
</div>
</div></div><a href="#" class="closebtn">×</a></div></div></div><div class="site-inner"><div class="content-sidebar-wrap"><main class="content"><nav id="breadcrumbs" aria-label="breadcrumbs"><span><span><a href="https://howtofeedaloon.com/" data-wpel-link="internal">Home</a></span> » <span><a href="https://howtofeedaloon.com/recipes/" data-wpel-link="internal">Recipe Index</a></span> » <span><a href="https://howtofeedaloon.com/category/texmex/" data-wpel-link="internal">TexMex / Mexican</a></span></span></nav><article class="post-42866 post type-post status-publish format-standard has-post-thumbnail category-bbq-mains category-cinco-de-mayo category-game-day-favorites category-grilled category-mexican-tex-mex-cal-mex tag-grilling tag-pork tag-tacos grow-content-body grow-content-main entry" aria-label="Grilled Tacos al Pastor"><header class="entry-header"><h1 class="entry-title">Grilled Tacos al Pastor</h1>
<p class="entry-meta">Published: <time class="entry-time">May 4, 2025</time> by <span class="entry-author"><a href="https://howtofeedaloon.com/aboutus/" class="entry-author-link" rel="author" data-wpel-link="internal"><span class="entry-author-name">Kris Longwell</span></a></span> · This post may contain affiliate links </p></header><div id="dpsp-content-top" class="dpsp-content-wrapper dpsp-shape-rounded dpsp-size-small dpsp-has-spacing dpsp-no-labels-mobile dpsp-show-on-mobile dpsp-show-total-share-count dpsp-show-total-share-count-after dpsp-button-style-1" style="min-height:32px;position:relative">
<div class="dpsp-total-share-wrapper" style="position:absolute;right:0">
<span class="dpsp-icon-total-share"></span>
<span class="dpsp-total-share-count">59</span>
<span>shares</span>
</div>
<ul class="dpsp-networks-btns-wrapper dpsp-networks-btns-share dpsp-networks-btns-content dpsp-column-4 dpsp-has-button-icon-animation" style="padding:0;margin:0;list-style-type:none">
<li class="dpsp-network-list-item dpsp-network-list-item-facebook" style="float:left">
<a rel="nofollow noopener" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F&t=Grilled%20Tacos%20al%20Pastor" class="dpsp-network-btn dpsp-facebook dpsp-first dpsp-has-label dpsp-has-label-mobile" target="_blank" aria-label="Share on Facebook" title="Share on Facebook" style="font-size:14px;padding:0rem;max-height:32px" data-wpel-link="external"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"></span></span>
<span class="dpsp-network-label dpsp-network-hide-label-mobile">Share</span></a></li>
<li class="dpsp-network-list-item dpsp-network-list-item-x" style="float:left">
<a rel="nofollow noopener" href="https://x.com/intent/tweet?text=Grilled%20Tacos%20al%20Pastor&url=https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F" class="dpsp-network-btn dpsp-x dpsp-has-label dpsp-has-label-mobile" target="_blank" aria-label="Share on X" title="Share on X" style="font-size:14px;padding:0rem;max-height:32px" data-wpel-link="external"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"></span></span>
<span class="dpsp-network-label dpsp-network-hide-label-mobile">Tweet</span></a></li>
<li class="dpsp-network-list-item dpsp-network-list-item-pinterest" style="float:left">
<button data-href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F&media=https%3A%2F%2Fhowtofeedaloon.com%2Fwp-content%2Fuploads%2F2025%2F05%2FTacos-al-Pastor-1.jpeg&description=Grilled%20Tacos%20al%20Pastor%20Grilled%20feature%20succulent%2C%20marinated%20pork%20grilled%20to%20perfection%2C%20served%20in%20warm%20corn%20tortillas%20and%20topped%20with%20fresh%20pineapple%2C%20onions%2C%20and%20cilantro.%20" class="dpsp-network-btn dpsp-pinterest dpsp-has-label dpsp-has-label-mobile" aria-label="Save to Pinterest" title="Save to Pinterest" style="font-size:14px;padding:0rem;max-height:32px"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"></span></span>
<span class="dpsp-network-label dpsp-network-hide-label-mobile">Pin</span></button></li>
<li class="dpsp-network-list-item dpsp-network-list-item-bluesky" style="float:left">
<a rel="nofollow noopener" href="https://bsky.app/intent/compose?text=Grilled%20Tacos%20al%20Pastor+https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F" class="dpsp-network-btn dpsp-bluesky dpsp-last dpsp-has-label dpsp-has-label-mobile" target="_blank" aria-label="Share on Bluesky" title="Share on Bluesky" style="font-size:14px;padding:0rem;max-height:32px" data-wpel-link="external"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"></span></span>
<span class="dpsp-network-label dpsp-network-hide-label-mobile">Bluesky</span></a></li>
</ul></div>
<div class="entry-content"><div class="wprm-recipe wprm-recipe-snippet wprm-recipe-template-snippet-basic-buttons-no-video"><a href="#recipe" data-recipe="42893" style="color: #ffffff;background-color: #000000;border-color: #333333;border-radius: 3px;padding: 5px 8px;" class="wprm-recipe-jump wprm-recipe-link wprm-jump-to-recipe-shortcode wprm-block-text-normal wprm-recipe-jump-inline-button wprm-recipe-link-inline-button wprm-color-accent"><span class="wprm-recipe-icon wprm-recipe-jump-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><g class="nc-icon-wrapper" fill="#ffffff"><path data-color="color-2" d="M9,2h6c0.6,0,1-0.4,1-1s-0.4-1-1-1H9C8.4,0,8,0.4,8,1S8.4,2,9,2z"></path> <path fill="#ffffff" d="M16,11V5c0-0.6-0.4-1-1-1H9C8.4,4,8,4.4,8,5v6H1.9L12,23.6L22.1,11H16z"></path></g></svg></span> Jump to Recipe</a>
<a href="#recipe-video" data-recipe="42893" style="color: #ffffff;background-color: #000000;border-color: #333333;border-radius: 3px;padding: 5px 8px;" class="wprm-recipe-jump-video wprm-recipe-link wprm-jump-to-video-shortcode wprm-block-text-normal wprm-recipe-jump-video-inline-button wprm-recipe-link-inline-button wprm-color-accent"><span class="wprm-recipe-icon wprm-recipe-jump-video-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><g class="nc-icon-wrapper" fill="#ffffff"><path data-color="color-2" d="M9,2h6c0.6,0,1-0.4,1-1s-0.4-1-1-1H9C8.4,0,8,0.4,8,1S8.4,2,9,2z"></path> <path fill="#ffffff" d="M16,11V5c0-0.6-0.4-1-1-1H9C8.4,4,8,4.4,8,5v6H1.9L12,23.6L22.1,11H16z"></path></g></svg></span> Jump to Video</a>
<a href="https://howtofeedaloon.com/wprm_print/grilled-tacos-al-pastor" style="color: #ffffff;background-color: #000000;border-color: #333333;border-radius: 3px;padding: 5px 8px;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-normal wprm-recipe-print-inline-button wprm-recipe-link-inline-button wprm-color-accent" data-recipe-id="42893" data-template="" target="_blank" rel="nofollow" data-wpel-link="internal"><span class="wprm-recipe-icon wprm-recipe-print-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g ><path fill="#ffffff" d="M19,5.09V1c0-0.552-0.448-1-1-1H6C5.448,0,5,0.448,5,1v4.09C2.167,5.569,0,8.033,0,11v7c0,0.552,0.448,1,1,1h4v4c0,0.552,0.448,1,1,1h12c0.552,0,1-0.448,1-1v-4h4c0.552,0,1-0.448,1-1v-7C24,8.033,21.833,5.569,19,5.09z M7,2h10v3H7V2z M17,22H7v-9h10V22z M18,10c-0.552,0-1-0.448-1-1c0-0.552,0.448-1,1-1s1,0.448,1,1C19,9.552,18.552,10,18,10z"/></g></svg></span> Print Recipe</a></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="150" height="225" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20225'%3E%3C/svg%3E" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2-150x225.jpeg"><noscript><img width="150" height="225" decoding="async" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2-150x225.jpeg" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" loading="lazy"></noscript></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="150" height="225" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20225'%3E%3C/svg%3E" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3-150x225.jpeg"><noscript><img width="150" height="225" decoding="async" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3-150x225.jpeg" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" loading="lazy"></noscript></div>
<p><strong>Grilled Tacos al Pastor are a culinary delight</strong>, bursting with flavor from the perfectly marinated pork grilled to perfection. The addition of homemade chili paste and <a href="https://howtofeedaloon.com/homemade-corn-tortillas/" data-wpel-link="internal">fresh corn tortillas</a> elevates these tacos to a whole new level, creating an unforgettable taste experience that showcases the essence of authentic <a href="https://howtofeedaloon.com/category/mexican-tex-mex-cal-mex/" data-wpel-link="internal">Mexican cuisine</a>.</p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1800" fetchpriority="high" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead.jpg" alt="An arrangement of ingredients for grilled tacos al pastor on a white background including dried chiles, spices, pineapple, pork shoulder, sugar, vinegar, and corn tortillas." data-skip-lazy class="wp-image-42870" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead-1024x1536.jpg 1024w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead-180x270.jpg 180w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead.jpg"></figure>
<style></style><details id="feast-advanced-jump-to"open><summary>Jump to:</summary><ul id="feast-jump-to-list"><li><a href="#%f0%9f%8d%8d-the-ingredients">🍍 The Ingredients</a></li><li><a href="#%f0%9f%8c%b6%ef%b8%8f-substitutions-and-variations">🌶️ Substitutions and Variations</a></li><li><a href="#%f0%9f%91%a9%f0%9f%8f%bc%f0%9f%8d%b3-how-to-make-homemade-chili-paste">👩🏼🍳 How to Make Homemade Chili Paste</a></li><li><a href="#%f0%9f%8c%ae-how-to-make-tacos-al-pastor">🌮 How to Make Tacos al Pastor</a></li><li><a href="#%f0%9f%94%a5-how-to-cook-tacos-al-pastor">🔥 How to Cook Tacos al Pastor</a></li><li><a href="#%f0%9f%8d%bd%ef%b8%8f-how-to-serve">🍽️ How To Serve</a></li><li><a href="#%f0%9f%99%8b%f0%9f%8f%bd%e2%99%82%ef%b8%8f-frequently-asked-questions">🙋🏽♂️ Frequently Asked Questions</a></li><li><a href="#%f0%9f%87%b2%f0%9f%87%bd-other-amazing-mexican-recipes">🇲🇽 Other Amazing Mexican Recipes</a></li><li><a href="#grilled-tacos-al-pastor">Grilled Tacos al Pastor</a></li></ul></details>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<h2 id="%f0%9f%8d%8d-the-ingredients" class="wp-block-heading" >🍍 The Ingredients</h2>
<p>While the ingredients for Tacos al Pastor may necessitate a quick trip to your local Hispanic food market or an online order, their harmonious combination results in one of the greatest tacos you'll ever taste. <strong>Find ingredient notes (including substitutions and variations) below.</strong></p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="An arrangement of ingredients for grilled tacos al pastor on a white background including dried chiles, spices, pineapple, pork shoulder, sugar, vinegar, and corn tortillas." class="wp-image-42868" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-1024x1536.jpg 1024w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-180x270.jpg 180w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients.jpg"><noscript><img decoding="async" width="1200" height="1800" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients.jpg" alt="An arrangement of ingredients for grilled tacos al pastor on a white background including dried chiles, spices, pineapple, pork shoulder, sugar, vinegar, and corn tortillas." class="wp-image-42868" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-1024x1536.jpg 1024w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients-180x270.jpg 180w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-ingredients.jpg"></noscript></figure>
</div></div>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<h2 id="%f0%9f%8c%b6%ef%b8%8f-substitutions-and-variations" class="wp-block-heading" >🌶️ Substitutions and Variations</h2>
<ul class="wp-block-list">
<li><strong>Protein</strong> - We recommend a boneless pork shoulder (Boston butt or pork butt) because the marbling (streaks of fat) make the meat tender and juicy. You can substitute a pork loin (not tenderloin) and still get delicious results. A pork tenderloin is very lean and will dry out during the cooking process. Both beef chuck and chicken thighs are wonderful options. Cooking times will vary. </li>
<li><strong>Pineapple</strong> - We highly recommend using fresh pineapple juice (not from concentrate or sweetened). This can be found in the juice section of most well-stocked supermarkets. If you can't get fresh pineapple for grilling, use canned, but get the type packed with water, not syrup. Orange juice can be substituted. </li>
<li><strong>Chiles</strong> - The homemade chili garlic paste adds amazing depth of flavor and can be made up to 2 weeks in advance. Guajillo and ancho peppers can be found in many supermarkets, Hispanic markets, or can easily be ordered online. You can use bottled paste and still get excellent results. Any type of dried chili will work for the paste, just do a little research, some carry more heat than others. </li>
<li><strong>Achiote paste</strong> - This is a key ingredient found in specialty markets, but can also be easily ordered <a href="https://amzn.to/3EN5uM6" data-wpel-link="external">online</a>. If you omit it, the taste will still be delicious, you just won't get the classic bright red color.</li>
<li><strong>Tortillas</strong> - Corn is traditional, and <a href="https://howtofeedaloon.com/homemade-corn-tortillas/" data-wpel-link="internal">homemade corn tortillas</a> are amazing. However, <a href="https://howtofeedaloon.com/homemade-flour-tortillas/" data-wpel-link="internal">flour tortillas</a> are delicious, too. </li>
</ul>
<p><em>See the recipe card (with video) below for a full list of ingredients and measurements.</em></p>
</div></div>
<div class="wp-block-group is-style-group-lightbulb"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<p class="is-variation-fancy-text has-large-font-size">Expert Tip</p>
<p>Fresh pineapple is a key ingredient in making authentic tacos al pastor. We use a <a href="https://amzn.to/3EXxXi8" data-wpel-link="external">pineapple corer</a> to easily get slices for grilling. Or, just cut up the pineapple after you've cut the pieces for the top and bottom of the marinated pork. </p>
</div></div>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<h2 id="%f0%9f%91%a9%f0%9f%8f%bc%f0%9f%8d%b3-how-to-make-homemade-chili-paste" class="wp-block-heading" >👩🏼‍🍳 How to Make Homemade Chili Paste</h2>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A large cast-iron skillet filled with dried chiles and cloves of garlic simmering in vegetable oil." class="wp-image-42871" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor.jpg" alt="A large cast-iron skillet filled with dried chiles and cloves of garlic simmering in vegetable oil." class="wp-image-42871" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-chili-paste-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol class="wp-block-list is-style-circle-number-list">
<li><strong>Step 1: </strong>Cook the chiles and garlic in hot oil for 1 to 2 minutes.</li>
</ol>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person pouring water from a large glass measuring cup into a pot filled with dried chiles." class="wp-image-42873" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor.jpg" alt="A person pouring water from a large glass measuring cup into a pot filled with dried chiles." class="wp-image-42873" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-chili-paste-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="2" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 2: </strong>Remove the chiles with a slotted spoon. Place them in a pot and cover with water. </li>
</ol>
</div>
</div>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-2 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A colander resting on top of a ceramic bowl with a pile of dried chiles that have been rehydrated with boiling water." class="wp-image-42875" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor.jpg" alt="A colander resting on top of a ceramic bowl with a pile of dried chiles that have been rehydrated with boiling water." class="wp-image-42875" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-chili-paste-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="3" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 3: </strong>Drain the chiles through a strainer, reserving the liquid</li>
</ol>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person standing behind a blender full of softened chiles, garlic, spices, and water on a cutting board on a kitchen island." class="wp-image-42877" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor.jpg" alt="A person standing behind a blender full of softened chiles, garlic, spices, and water on a cutting board on a kitchen island." class="wp-image-42877" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-chili-paste-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="4" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 4:</strong> Add chiles, garlic, salt, bouillon cubes, and 1 cup soaking liquid to a blender.</li>
</ol>
</div>
</div>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-3 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person holding down the lid of a blender that is halfway filled with a pureed chili mixture that will be a marinade for tacos al pastor." class="wp-image-42879" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor.jpg" alt="A person holding down the lid of a blender that is halfway filled with a pureed chili mixture that will be a marinade for tacos al pastor." class="wp-image-42879" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-chili-paste-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="5" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 5: </strong>Purée until smooth.</li>
</ol>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person pouring a bright red marinade from a blender into a glass jar on a wooden cutting board." class="wp-image-42881" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor.jpg" alt="A person pouring a bright red marinade from a blender into a glass jar on a wooden cutting board." class="wp-image-42881" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-chili-paste-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="6" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 6:</strong> Let cool and transfer to a jar with a tight-fitting lid.</li>
</ol>
</div>
</div>
</div></div>
<div class="wp-block-group is-style-group-lightbulb"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<p class="is-variation-fancy-text has-large-font-size">Expert Tip</p>
<p>Place the pork shoulder in the freezer for 30 to 40 minutes before slicing it. This will firm up the meat and make slicing much easier. </p>
</div></div>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<h2 id="%f0%9f%8c%ae-how-to-make-tacos-al-pastor" class="wp-block-heading" >🌮 How to Make Tacos al Pastor</h2>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-4 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person using a large chef's knife to slice strips of an uncooked boneless pork shoulder on a wooden cutting board." class="wp-image-42872" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor.jpg" alt="A person using a large chef's knife to slice strips of an uncooked boneless pork shoulder on a wooden cutting board." class="wp-image-42872" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-1-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol class="wp-block-list is-style-circle-number-list">
<li><strong>Step 1: </strong>Slice the pork. </li>
</ol>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person transferring homemade chili paste from a small glass bowl into a blender that contains broth and spices." class="wp-image-42874" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor.jpg" alt="A person transferring homemade chili paste from a small glass bowl into a blender that contains broth and spices." class="wp-image-42874" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-2-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="2" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 2: </strong>Add the marinade ingredients to the blender.</li>
</ol>
</div>
</div>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-5 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person removing the lid from a blender that is half-filled with a puréed chili marinade." class="wp-image-42891" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1.jpg" alt="A person removing the lid from a blender that is half-filled with a puréed chili marinade." class="wp-image-42891" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-3-grilled-tacos-al-pastor-1.jpg"></noscript></figure>
<ol start="3" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 3: </strong>Purée until smooth, about 1 minute. </li>
</ol>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person wearing latex gloves pressing slices of pork soaked in an al pastor marinade in a large glass baking dish with a blender nearby containing more of the marinade." class="wp-image-42878" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor.jpg" alt="A person wearing latex gloves pressing slices of pork soaked in an al pastor marinade in a large glass baking dish with a blender nearby containing more of the marinade." class="wp-image-42878" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-4-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="4" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 4:</strong> Submerge the pork in the marinade in a dish, cover, and chill overnight.</li>
</ol>
</div>
</div>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-6 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person pressing a large slice of fresh pineapple onto an upright skewer that is attached to a metal pan with handles on a wooden cutting board." class="wp-image-42880" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor.jpg" alt="A person pressing a large slice of fresh pineapple onto an upright skewer that is attached to a metal pan with handles on a wooden cutting board." class="wp-image-42880" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-5-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="5" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 5: </strong>Slice the pineapple and place it on a skewer. </li>
</ol>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person pressing onto the top of a pile of strips of raw marinated pork shoulder on an upright skewer attached to a metal pan with handles." class="wp-image-42882" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor.jpg" alt="A person pressing onto the top of a pile of strips of raw marinated pork shoulder on an upright skewer attached to a metal pan with handles." class="wp-image-42882" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-6-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="6" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 6:</strong> Stack the pork on and top with pineapple. </li>
</ol>
</div>
</div>
</div></div>
<div class="wp-block-group is-style-group-lightbulb"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<p class="is-variation-fancy-text has-large-font-size">Expert Tip</p>
<p>We use our <a href="https://amzn.to/430Vwie" rel="nofollow" data-wpel-link="external">tacos al pastor skewer (with plate)</a> to grill the meat. You can also use wooden or metal skewers that you insert into the bottom slice of the pineapple to secure the meat. Or, you can simply grill the strips of marinated pork directly on the grill until crispy on the edges and fully cooked (about 15 to 20 minutes). </p>
</div></div>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<h2 id="%f0%9f%94%a5-how-to-cook-tacos-al-pastor" class="wp-block-heading" >🔥 How to Cook Tacos al Pastor</h2>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A stack of pork with pineapple slices on an al pastor pan resting in the middle of a charcoal kettle grill." class="wp-image-42883" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor.jpg" alt="A stack of pork with pineapple slices on an al pastor pan resting in the middle of a charcoal kettle grill." class="wp-image-42883" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-7-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol class="wp-block-list is-style-circle-number-list">
<li><strong>Step 1: </strong>Heat a charcoal grill and place the meat over indirect heat. </li>
</ol>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person using a chef's knife and a pair of tongs to cut away burnt ends of a partially cooked pork al pastor on a charcoal grill." class="wp-image-42884" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor.jpg" alt="A person using a chef's knife and a pair of tongs to cut away burnt ends of a partially cooked pork al pastor on a charcoal grill." class="wp-image-42884" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-8-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="2" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 2: </strong>Cook for 2 hours, trimming the dark edges after 1 hour. </li>
</ol>
</div>
</div>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="Several large grilled chunks of fresh pineapple resting on the edge of a grate on a charcoal grill." class="wp-image-42885" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor.jpg" alt="Several large grilled chunks of fresh pineapple resting on the edge of a grate on a charcoal grill." class="wp-image-42885" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-9-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="3" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 3: </strong>Grill the pineapple slices. </li>
</ol>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person using a chef's knife to slice chunks of cooked marinated pork from a skewer that has a slice of pineapple on top." class="wp-image-42886" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor.jpg" alt="A person using a chef's knife to slice chunks of cooked marinated pork from a skewer that has a slice of pineapple on top." class="wp-image-42886" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-10-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="4" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 4:</strong> Cut off chunks of the pork. </li>
</ol>
</div>
</div>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person using a large knife to chop grilled pineapple on a wooden cutting board." class="wp-image-42888" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor.jpg" alt="A person using a large knife to chop grilled pineapple on a wooden cutting board." class="wp-image-42888" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/stop-11-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="5" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 5: </strong>Chop the grilled pineapple. </li>
</ol>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201200'%3E%3C/svg%3E" alt="A person using a small spoon to add a layer of homemade taco sauce over the top of tacos al pastor resting on brown wax paper." class="wp-image-42887" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-96x96.jpg 96w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor.jpg"><noscript><img decoding="async" width="1200" height="1200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor.jpg" alt="A person using a small spoon to add a layer of homemade taco sauce over the top of tacos al pastor resting on brown wax paper." class="wp-image-42887" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor-96x96.jpg 96w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/step-12-grilled-tacos-al-pastor.jpg"></noscript></figure>
<ol start="6" class="wp-block-list is-style-circle-number-list">
<li><strong>Step 6:</strong> Build the tacos. </li>
</ol>
</div>
</div>
</div></div>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<h2 id="%f0%9f%8d%bd%ef%b8%8f-how-to-serve" class="wp-block-heading" >🍽️ How To Serve</h2>
<ul class="wp-block-list">
<li>We recommend using a paper towel (or two) to soak up some of the rendered grease that will have collected in the pan. </li>
<li>For a dramatic presentation, bring the pork tower to the table and slice the meat, and place it on your guest's open tortilla.</li>
<li>Have bowls of the toppings such as chopped cilantro, red onion, grilled pineapple (cut into chunks), and the heated reserved sauce. Let guests build their tacos. </li>
<li>We love to serve these amazing tacos with individual servings of <a href="https://howtofeedaloon.com/bodacious-borracho-beans/" data-wpel-link="internal">slow-cooked borracho beans</a> and <a href="https://howtofeedaloon.com/cilantro-lime-rice/" data-wpel-link="internal">homemade cilantro lime rice</a>. </li>
</ul>
</div></div>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<h2 id="%f0%9f%99%8b%f0%9f%8f%bd%e2%99%82%ef%b8%8f-frequently-asked-questions" class="wp-block-heading" >🙋🏽‍♂️ Frequently Asked Questions</h2>
<div class="schema-faq wp-block-yoast-faq-block"><div class="schema-faq-section" id="faq-question-1746316532197"><strong class="schema-faq-question">What's the difference between carnitas and al pastor? </strong> <p class="schema-faq-answer">They are similar. Carnitas are slow-cooked pork, usually braised or roasted until tender and crispy. Al pastor is marinated and then typically cooked on a spit (like shawarma), with bold spices and pineapple for a sweet, smoky flavor.</p> </div> <div class="schema-faq-section" id="faq-question-1746316747918"><strong class="schema-faq-question"><strong>Can I make tacos al pastor at home without a vertical spit?</strong></strong> <p class="schema-faq-answer">Yes, you can make tacos al pastor at home by grilling or roasting the marinated pork in the oven or on a grill, then slicing it thinly to serve in warm tortillas.</p> </div> <div class="schema-faq-section" id="faq-question-1746316765437"><strong class="schema-faq-question"><strong>What toppings are best for grilled tacos al pastor?</strong></strong> <p class="schema-faq-answer">Diced onions, fresh cilantro, pineapple chunks, and a squeeze of lime, <a href="https://howtofeedaloon.com/roasted-tomato-salsa/" data-wpel-link="internal">roasted tomato salsa</a>, or heated al pastor sauce (reserved from the marinade before adding the pork). </p> </div> </div>
</div></div>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1800" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%201800'%3E%3C/svg%3E" alt="A tower of grilled layers of marinated pork with a rod centered in the middle anchoring the meat with a slice of pineapple on top all on a charcoal grill." class="wp-image-42869" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-1024x1536.jpg 1024w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-180x270.jpg 180w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill.jpg"><noscript><img decoding="async" width="1200" height="1800" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill.jpg" alt="A tower of grilled layers of marinated pork with a rod centered in the middle anchoring the meat with a slice of pineapple on top all on a charcoal grill." class="wp-image-42869" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill.jpg 1200w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-1024x1536.jpg 1024w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill-180x270.jpg 180w" sizes="(max-width: 1200px) 100vw, 1200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-on-grill.jpg"></noscript></figure>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<h2 id="%f0%9f%87%b2%f0%9f%87%bd-other-amazing-mexican-recipes" class="wp-block-heading" >🇲🇽 Other Amazing Mexican Recipes</h2>
<div class="feast-category-index feast-recipe-index"><ul class="fsri-list feast-grid-half feast-desktop-grid-fourth"><li class="listing-item"><a href="https://howtofeedaloon.com/beef-enchiladas-with-red-sauce/" data-wpel-link="internal"><img decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A sheet pan filled with a row of beef enchiladas with red sauce and topped with chopped tomatoes and lettuce." data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-1024x1536.jpg 1024w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view.jpg 1200w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-360x540.jpg"><noscript><img decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A sheet pan filled with a row of beef enchiladas with red sauce and topped with chopped tomatoes and lettuce." data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-1024x1536.jpg 1024w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view.jpg 1200w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/04/beef-enchiladas-with-red-sauce-front-view.jpg"></noscript><div class="fsri-title">Beef Enchiladas with Red Sauce</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/veracruz-style-shrimp-with-tortillas-in-pumpkin-seed-sauce-pipian/" data-wpel-link="internal"><img decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A close-up view of shrimp veracruz sitting on three rolled corn tortillas topped with a pipián sauce." data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-360x540.jpg"><noscript><img decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A close-up view of shrimp veracruz sitting on three rolled corn tortillas topped with a pipián sauce." data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2023/01/shrimp-veracruz-close-up.jpg"></noscript><div class="fsri-title">Shrimp Veracruz with Pumpkin Seed Sauce (Pipián)</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/roasted-chipotle-chicken/" data-wpel-link="internal"><img decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A black circular plate filled with two pieces of roasted chipotle chicken next to cilantro rice and lime wedges all next to a glass of beer." data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-570x855.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-770x1155.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-360x540.jpg"><noscript><img decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A black circular plate filled with two pieces of roasted chipotle chicken next to cilantro rice and lime wedges all next to a glass of beer." data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-570x855.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-770x1155.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2016/04/chipotle-checken-feature.jpg"></noscript><div class="fsri-title">Roasted Chipotle Chicken</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/chili-rellenos-stuffed-with-mexican-queso/" data-wpel-link="internal"><img decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="Two Chile rellenos in a red sauce in a cast iron skillet" data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-360x540.jpg"><noscript><img decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="Two Chile rellenos in a red sauce in a cast iron skillet" data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2018/05/chile-rellenos_Vertical-Video-Blog.jpg"></noscript><div class="fsri-title">Chile Rellenos Stuffed with Mexican Queso</div></a></li></ul></div></div></div>
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<p>Ready to make the best tacos this side of Mexico? Go for it!</p>
<p><strong>And when you do, be sure to take a photo of them, post it on Instagram, and tag @HowToFeedaLoon and hashtag #HowToFeedaLoon! </strong></p>
</div></div>
<div id="recipe"></div><div id="wprm-recipe-container-42893" class="wprm-recipe-container" data-recipe-id="42893" data-servings="6"><div class="wprm-recipe wprm-recipe-template-h2fla-cut-out-template"><div class="wprm-recipe-image wprm-block-image-rounded"><img decoding="async" style="border-width: 10px;border-style: solid;border-color: #ffffff;border-radius: 30px;" width="200" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20200%20200'%3E%3C/svg%3E" class="attachment-200x200 size-200x200" alt="Three grilled tacos al pastor pressed against each other loaded with marinated grilled pork, pineapple chunks, cilantro, red onion, and a homemade sauce on top." data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-96x96.jpg 96w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG.jpg 1200w" data-lazy-sizes="(max-width: 200px) 100vw, 200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-360x360.jpg"><noscript><img decoding="async" style="border-width: 10px;border-style: solid;border-color: #ffffff;border-radius: 30px;" width="200" height="200" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-360x360.jpg" class="attachment-200x200 size-200x200" alt="Three grilled tacos al pastor pressed against each other loaded with marinated grilled pork, pineapple chunks, cilantro, red onion, and a homemade sauce on top." srcset="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-768x768.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-500x500.jpg 500w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-720x720.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG-96x96.jpg 96w, https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG.jpg 1200w" sizes="(max-width: 200px) 100vw, 200px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG.jpg"></noscript></div>
<div class="wprm-recipe-template-h2fla-cut-out-template-container">
<div class="wprm-recipe-template-h2fla-cut-out-template-header">
<h2 id="grilled-tacos-al-pastor" class="wprm-recipe-name wprm-block-text-bold">Grilled Tacos al Pastor</h2>
<div class="wprm-spacer" style="height: 5px"></div>
<div class="wprm-recipe-summary wprm-block-text-normal"><span style="display: block;">Grilled Tacos al Pastor is a true flavor explosion. Allow the pork to sit in the marinade for at least 12 hours for maximum flavor. If you don't have a skewer plate, you can simply grill the meat on your gas or charcoal grill. You can also roast the meat in the oven. The homemade chili paste can be made up to 2 weeks in advance. </span></div>
<div class="wprm-spacer" style="height: 15px"></div>
<style></style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><lineargradient id="wprm-recipe-user-rating-0-33"><stop offset="0%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-user-rating-0-50"><stop offset="0%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-user-rating-0-66"><stop offset="0%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs></svg><style></style><div id="wprm-recipe-user-rating-0" class="wprm-recipe-rating wprm-recipe-rating-recipe-42893 wprm-user-rating wprm-recipe-rating-separate wprm-user-rating-not-voted wprm-user-rating-allowed" data-recipe="42893" data-average="0" data-count="0" data-total="0" data-user="0" data-decimals="2" data-modal-uid="user-rating"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-empty" data-rating="1" data-color="#ffffff" role="button" tabindex="0" aria-label="Rate this recipe 1 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-empty" data-rating="2" data-color="#ffffff" role="button" tabindex="0" aria-label="Rate this recipe 2 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-empty" data-rating="3" data-color="#ffffff" role="button" tabindex="0" aria-label="Rate this recipe 3 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-empty" data-rating="4" data-color="#ffffff" role="button" tabindex="0" aria-label="Rate this recipe 4 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-empty" data-rating="5" data-color="#ffffff" role="button" tabindex="0" aria-label="Rate this recipe 5 out of 5 stars" onmouseenter="window.WPRecipeMaker.userRating.enter(this)" onfocus="window.WPRecipeMaker.userRating.enter(this)" onmouseleave="window.WPRecipeMaker.userRating.leave(this)" onblur="window.WPRecipeMaker.userRating.leave(this)" onclick="window.WPRecipeMaker.userRating.click(this, event)" onkeypress="window.WPRecipeMaker.userRating.click(this, event)" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal">No ratings yet</div></div>
<div class="wprm-spacer" style="height: 15px"></div>
<a href="https://howtofeedaloon.com/wprm_print/grilled-tacos-al-pastor" style="color: #2c3e50;background-color: #ffffff;border-color: #ffffff;border-radius: 0px;padding: 5px 12px;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-normal wprm-recipe-print-inline-button wprm-recipe-link-inline-button wprm-color-accent" data-recipe-id="42893" data-template="" target="_blank" rel="nofollow" data-wpel-link="internal"><span class="wprm-recipe-icon wprm-recipe-print-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g><path fill="#333333" d="M19,5.09V1c0-0.552-0.448-1-1-1H6C5.448,0,5,0.448,5,1v4.09C2.167,5.569,0,8.033,0,11v7c0,0.552,0.448,1,1,1h4v4c0,0.552,0.448,1,1,1h12c0.552,0,1-0.448,1-1v-4h4c0.552,0,1-0.448,1-1v-7C24,8.033,21.833,5.569,19,5.09z M7,2h10v3H7V2z M17,22H7v-9h10V22z M18,10c-0.552,0-1-0.448-1-1c0-0.552,0.448-1,1-1s1,0.448,1,1C19,9.552,18.552,10,18,10z"></path></g></svg></span> Print</a>
<a href="https://www.pinterest.com/pin/create/bookmarklet/?url=https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F&media=https%3A%2F%2Fhowtofeedaloon.com%2Fwp-content%2Fuploads%2F2025%2F05%2Fgrilled-tacos-al-pastor-IG.jpg&description=Grilled+Tacos+al+Pastor&is_video=false" style="color: #2c3e50;background-color: #ffffff;border-color: #ffffff;border-radius: 0px;padding: 5px 12px;" class="wprm-recipe-pin wprm-recipe-link wprm-block-text-normal wprm-recipe-pin-inline-button wprm-recipe-link-inline-button wprm-color-accent" target="_blank" rel="nofollow noopener" data-recipe="42893" data-url="https://howtofeedaloon.com/grilled-tacos-al-pastor/" data-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-IG.jpg" data-description="Grilled Tacos al Pastor" data-repin="" role="button" data-wpel-link="external"><span class="wprm-recipe-icon wprm-recipe-pin-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 24 24"><g class="nc-icon-wrapper" fill="#333333"><path fill="#333333" d="M12,0C5.4,0,0,5.4,0,12c0,5.1,3.2,9.4,7.6,11.2c-0.1-0.9-0.2-2.4,0-3.4c0.2-0.9,1.4-6,1.4-6S8.7,13,8.7,12 c0-1.7,1-2.9,2.2-2.9c1,0,1.5,0.8,1.5,1.7c0,1-0.7,2.6-1,4c-0.3,1.2,0.6,2.2,1.8,2.2c2.1,0,3.8-2.2,3.8-5.5c0-2.9-2.1-4.9-5-4.9 c-3.4,0-5.4,2.6-5.4,5.2c0,1,0.4,2.1,0.9,2.7c0.1,0.1,0.1,0.2,0.1,0.3c-0.1,0.4-0.3,1.2-0.3,1.4c-0.1,0.2-0.2,0.3-0.4,0.2 c-1.5-0.7-2.4-2.9-2.4-4.6c0-3.8,2.8-7.3,7.9-7.3c4.2,0,7.4,3,7.4,6.9c0,4.1-2.6,7.5-6.2,7.5c-1.2,0-2.4-0.6-2.8-1.4 c0,0-0.6,2.3-0.7,2.9c-0.3,1-1,2.3-1.5,3.1C9.6,23.8,10.8,24,12,24c6.6,0,12-5.4,12-12C24,5.4,18.6,0,12,0z"></path></g></svg></span> Pin</a>
<a href="#commentform" style="color: #2c3e50;background-color: #ffffff;border-color: #ffffff;border-radius: 0px;padding: 5px 12px;" class="wprm-recipe-jump-to-comments wprm-recipe-link wprm-block-text-normal wprm-recipe-jump-to-comments-inline-button wprm-recipe-link-inline-button wprm-color-accent"><span class="wprm-recipe-icon wprm-recipe-jump-to-comments-icon"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#333333" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span> Rate</a>
<div class="wprm-spacer"></div>
<div class="wprm-recipe-meta-container wprm-recipe-custom-container wprm-recipe-details-container wprm-recipe-details-container-inline wprm-block-text-normal" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-course-container" style=""><span class="wprm-recipe-details-label wprm-block-text-faded wprm-recipe-tag-label wprm-recipe-course-label">Course: </span><span class="wprm-recipe-course wprm-block-text-normal">Lunch / Dinner</span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-cuisine-container" style=""><span class="wprm-recipe-details-label wprm-block-text-faded wprm-recipe-tag-label wprm-recipe-cuisine-label">Cuisine: </span><span class="wprm-recipe-cuisine wprm-block-text-normal">Mexican</span></div></div>
<div class="wprm-recipe-meta-container wprm-recipe-times-container wprm-recipe-details-container wprm-recipe-details-container-inline wprm-block-text-normal" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-prep-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-faded wprm-recipe-time-label wprm-recipe-prep-time-label">Prep Time: </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-prep_time wprm-recipe-prep_time-minutes">30<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-prep_time-unit wprm-recipe-prep_timeunit-minutes" aria-hidden="true">minutes</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-cook-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-faded wprm-recipe-time-label wprm-recipe-cook-time-label">Cook Time: </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-hours wprm-recipe-cook_time wprm-recipe-cook_time-hours">3<span class="sr-only screen-reader-text wprm-screen-reader-text"> hours</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-unit-hours wprm-recipe-cook_time-unit wprm-recipe-cook_timeunit-hours" aria-hidden="true">hours</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-custom-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-faded wprm-recipe-time-label wprm-recipe-custom-time-label">Marinating time: </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-hours wprm-recipe-custom_time wprm-recipe-custom_time-hours">12<span class="sr-only screen-reader-text wprm-screen-reader-text"> hours</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-unit-hours wprm-recipe-custom_time-unit wprm-recipe-custom_timeunit-hours" aria-hidden="true">hours</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-total-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-faded wprm-recipe-time-label wprm-recipe-total-time-label">Total Time: </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-hours wprm-recipe-total_time wprm-recipe-total_time-hours">15<span class="sr-only screen-reader-text wprm-screen-reader-text"> hours</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-unit-hours wprm-recipe-total_time-unit wprm-recipe-total_timeunit-hours" aria-hidden="true">hours</span> <span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-total_time wprm-recipe-total_time-minutes">30<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-total_time-unit wprm-recipe-total_timeunit-minutes" aria-hidden="true">minutes</span></span></div></div>
<div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-servings-container" style=""><span class="wprm-recipe-details-label wprm-block-text-faded wprm-recipe-servings-label">Servings: </span><span class="wprm-recipe-servings wprm-recipe-details wprm-recipe-servings-42893 wprm-recipe-servings-adjustable-tooltip wprm-block-text-normal" data-recipe="42893" aria-label="Adjust recipe servings">6</span></div>
<div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-nutrition-container wprm-recipe-calories-container" style=""><span class="wprm-recipe-details-label wprm-block-text-faded wprm-recipe-nutrition-label wprm-recipe-calories-label">Calories: </span><span class="wprm-recipe-nutrition-with-unit"><span class="wprm-recipe-details wprm-recipe-nutrition wprm-recipe-calories wprm-block-text-normal">247</span><span class="wprm-recipe-details-unit wprm-recipe-nutrition-unit wprm-recipe-calories-unit wprm-block-text-normal">kcal</span></span></div>
<div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-author-container" style=""><span class="wprm-recipe-details-label wprm-block-text-faded wprm-recipe-author-label">Author: </span><span class="wprm-recipe-details wprm-recipe-author wprm-block-text-normal"><a href="https://howtofeedaloon.com/aboutus/" target="_self" data-wpel-link="internal">Kris Longwell</a></span></div>
</div>
<div id="recipe-video"></div><div id="wprm-recipe-video-container-42893" class="wprm-recipe-video-container"><h3 class="wprm-recipe-header wprm-recipe-video-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none" style="">Video</h3><div class="wprm-recipe-video">
<div class="adthrive-video-player in-post" itemscope itemtype="https://schema.org/VideoObject" data-video-id="jauIUUfc" data-player-type="default" override-embed="default">
<meta itemprop="uploadDate" content="2025-05-04T16:36:47+00:00">
<meta itemprop="name" content="Grilled Tacos al Pastor">
<meta itemprop="description" content="">
<meta itemprop="thumbnailUrl" content="https://content.jwplatform.com/thumbs/jauIUUfc-720.jpg">
<meta itemprop="contentUrl" content="https://content.jwplatform.com/videos/jauIUUfc.mp4">
</div>
</div></div>
<div class="wprm-recipe-equipment-container wprm-block-text-normal" data-recipe="42893"><h3 class="wprm-recipe-header wprm-recipe-equipment-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none" style="">Equipment</h3><ul class="wprm-recipe-equipment wprm-recipe-equipment-list"><li class="wprm-recipe-equipment-item" style="list-style-type: none;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-0" class="wprm-checkbox" aria-label="Al Pastor Skewer for Grill"><label for="wprm-checkbox-0" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><div class="wprm-recipe-equipment-name">Al Pastor Skewer for Grill</div></li><li class="wprm-recipe-equipment-item" style="list-style-type: none;"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-1" class="wprm-checkbox" aria-label="Charcoal or gas grill"><label for="wprm-checkbox-1" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><div class="wprm-recipe-equipment-name">Charcoal or gas grill</div></li></ul></div>
<div class="wprm-recipe-ingredients-container wprm-recipe-ingredients-no-images wprm-recipe-42893-ingredients-container wprm-block-text-normal wprm-ingredient-style-regular wprm-recipe-images-before" data-recipe="42893" data-servings="6"><h3 class="wprm-recipe-header wprm-recipe-ingredients-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none" style="">Ingredients</h3><div class="wprm-recipe-ingredient-group"><h4 class="wprm-recipe-group-name wprm-recipe-ingredient-group-name wprm-block-text-bold">For the Chili Paste</h4><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="0"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-2" class="wprm-checkbox" aria-label=" 1 cup vegetable oil"><label for="wprm-checkbox-2" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">vegetable oil</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="2"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-3" class="wprm-checkbox" aria-label=" 20 guajillo chiles dried, stems and seeds removed"><label for="wprm-checkbox-3" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">20</span> <span class="wprm-recipe-ingredient-name">guajillo chiles</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">dried, stems and seeds removed</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="3"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-4" class="wprm-checkbox" aria-label=" 35 chiles de Arbol dried, stems and seeds removed"><label for="wprm-checkbox-4" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">35</span> <span class="wprm-recipe-ingredient-name">chiles de Arbol</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">dried, stems and seeds removed</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="4"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-5" class="wprm-checkbox" aria-label=" 4 cloves garlic"><label for="wprm-checkbox-5" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">4</span> <span class="wprm-recipe-ingredient-unit">cloves</span> <span class="wprm-recipe-ingredient-name">garlic</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="5"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-6" class="wprm-checkbox" aria-label=" 2 teaspoon Kosher salt"><label for="wprm-checkbox-6" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">Kosher salt</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="6"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-7" class="wprm-checkbox" aria-label=" 1 chicken bouillon cube"><label for="wprm-checkbox-7" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-name">chicken bouillon cube</span></li></ul></div><div class="wprm-recipe-ingredient-group"><h4 class="wprm-recipe-group-name wprm-recipe-ingredient-group-name wprm-block-text-bold">For the Tacos al Pastor</h4><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="20"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-8" class="wprm-checkbox" aria-label=" 1 3 lb pork shoulder boneless"><label for="wprm-checkbox-8" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">3 lb</span> <span class="wprm-recipe-ingredient-name">pork shoulder</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">boneless</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="8"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-9" class="wprm-checkbox" aria-label=" ½ cup pineapple juice"><label for="wprm-checkbox-9" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">½</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">pineapple juice</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="9"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-10" class="wprm-checkbox" aria-label=" ½ cup distilled white vinegar"><label for="wprm-checkbox-10" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">½</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">distilled white vinegar</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="10"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-11" class="wprm-checkbox" aria-label=" ¼ cup chili paste"><label for="wprm-checkbox-11" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">¼</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">chili paste</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="11"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-12" class="wprm-checkbox" aria-label=" ¼ cup achiote paste"><label for="wprm-checkbox-12" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">¼</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">achiote paste</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="12"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-13" class="wprm-checkbox" aria-label=" 6 tablespoon light brown sugar"><label for="wprm-checkbox-13" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">6</span> <span class="wprm-recipe-ingredient-unit">tablespoon</span> <span class="wprm-recipe-ingredient-name">light brown sugar</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="13"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-14" class="wprm-checkbox" aria-label=" 4 cloves garlic"><label for="wprm-checkbox-14" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">4</span> <span class="wprm-recipe-ingredient-unit">cloves</span> <span class="wprm-recipe-ingredient-name">garlic</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="14"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-15" class="wprm-checkbox" aria-label=" 1½ teaspoon oregano dried, preferably Mexican"><label for="wprm-checkbox-15" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1½</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">oregano</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">dried, preferably Mexican</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="15"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-16" class="wprm-checkbox" aria-label=" 1½ teaspoon cumin ground"><label for="wprm-checkbox-16" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1½</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">cumin</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">ground</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="16"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-17" class="wprm-checkbox" aria-label=" 1½ teaspoon black pepper"><label for="wprm-checkbox-17" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1½</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">black pepper</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="17"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-18" class="wprm-checkbox" aria-label=" ½ teaspoon ground cinnamon"><label for="wprm-checkbox-18" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">½</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">ground cinnamon</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="18"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-19" class="wprm-checkbox" aria-label=" ¼ teaspoon ground cloves"><label for="wprm-checkbox-19" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">¼</span> <span class="wprm-recipe-ingredient-unit">teaspoon</span> <span class="wprm-recipe-ingredient-name">ground cloves</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="19"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-20" class="wprm-checkbox" aria-label=" 2 tablespoon Kosher salt"><label for="wprm-checkbox-20" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">2</span> <span class="wprm-recipe-ingredient-unit">tablespoon</span> <span class="wprm-recipe-ingredient-name">Kosher salt</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="22"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-21" class="wprm-checkbox" aria-label=" 1 whole pineapple"><label for="wprm-checkbox-21" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">whole</span> <span class="wprm-recipe-ingredient-name">pineapple</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="21"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-22" class="wprm-checkbox" aria-label=" 12 corn tortillas"><label for="wprm-checkbox-22" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">12</span> <span class="wprm-recipe-ingredient-name">corn tortillas</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="23"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-23" class="wprm-checkbox" aria-label=" 1 cup red onion finely chopped, for garnish"><label for="wprm-checkbox-23" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">red onion</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">finely chopped, for garnish</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="24"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-24" class="wprm-checkbox" aria-label=" cilantro fresh, chopped, for garnish"><label for="wprm-checkbox-24" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-name">cilantro</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">fresh, chopped, for garnish</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="25"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-25" class="wprm-checkbox" aria-label=" lime wedges for serving"><label for="wprm-checkbox-25" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-name">lime wedges</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">for serving</span></li></ul></div></div>
<div class="wprm-recipe-instructions-container wprm-recipe-42893-instructions-container wprm-block-text-normal" data-recipe="42893"><h3 class="wprm-recipe-header wprm-recipe-instructions-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none" style="">Instructions</h3><div class="wprm-recipe-instruction-group"><h4 class="wprm-recipe-group-name wprm-recipe-instruction-group-name wprm-block-text-bold">Make the Chili Paste</h4><ul class="wprm-recipe-instructions"><li id="wprm-recipe-42893-step-0-0" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Heat the oil in a large, sturdy skillet over medium heat until shimmering. Add the chiles and garlic and stir to coat with the oil. Simmer in the oil for about 2 minutes. Use a slotted spoon or tongs to carefully remove the chiles and garlic and place them on a platter lined with paper towels. </span></div><div class="wprm-recipe-instruction-ingredients wprm-recipe-instruction-ingredients-inline wprm-block-text-faded" style="margin-top: -5px; margin-bottom: 5px;"><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-0" data-separator=", " style="margin-bottom: 5px;">1 cup vegetable oil, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-2" data-separator=", " style="margin-bottom: 5px;">20 guajillo chiles, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-3" data-separator=", " style="margin-bottom: 5px;">35 chiles de Arbol, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-4" data-separator="" style="margin-bottom: 5px;">4 cloves garlic</span></div></li><li id="wprm-recipe-42893-step-0-1" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Pat the chiles and garlic dry and place them in a large pot. Add just enough water to cover the chiles. Bring to a simmer and cover. Simmer for 7 minutes, or until the chiles are very tender. </span></div></li><li id="wprm-recipe-42893-step-0-2" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Drain the chiles and garlic through a colander into a heatproof bowl, reserving the liquid. </span></div></li><li id="wprm-recipe-42893-step-0-3" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Transfer the chiles and garlic to a blender. Add the salt, bouillon cube, and 1 cup of the chile water. Purée for 1 minute, until very smooth. Allow the paste to cool down and then transfer to a jar with a tight-fitting lid. Refrigerate for up to 2 weeks. </span></div><div class="wprm-recipe-instruction-ingredients wprm-recipe-instruction-ingredients-inline wprm-block-text-faded" style="margin-top: -5px; margin-bottom: 5px;"><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-5" data-separator=", " style="margin-bottom: 5px;">2 teaspoon Kosher salt, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-6" data-separator="" style="margin-bottom: 5px;">1 chicken bouillon cube</span></div></li></ul></div><div class="wprm-recipe-instruction-group"><h4 class="wprm-recipe-group-name wprm-recipe-instruction-group-name wprm-block-text-bold">Make the Tacos al Pastor</h4><ul class="wprm-recipe-instructions"><li id="wprm-recipe-42893-step-1-0" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Place the pork shoulder in the freezer for 30 minutes (this makes slicing it easier). </span></div><div class="wprm-recipe-instruction-ingredients wprm-recipe-instruction-ingredients-inline wprm-block-text-faded" style="margin-top: -5px; margin-bottom: 5px;"><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-20" data-separator="" style="margin-bottom: 5px;">1 3 lb pork shoulder</span></div></li><li id="wprm-recipe-42893-step-1-1" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">In a blender, add the pineapple juice, vinegar, oil, chile paste, achiote paste, brown sugar, garlic, oregano, cumin, pepper, cinnamon, cloves, and salt. Purée until smooth. Set aside. </span></div><div class="wprm-recipe-instruction-ingredients wprm-recipe-instruction-ingredients-inline wprm-block-text-faded" style="margin-top: -5px; margin-bottom: 5px;"><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-8" data-separator=", " style="margin-bottom: 5px;">½ cup pineapple juice, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-9" data-separator=", " style="margin-bottom: 5px;">½ cup distilled white vinegar, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-10" data-separator=", " style="margin-bottom: 5px;">¼ cup chili paste, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-11" data-separator=", " style="margin-bottom: 5px;">¼ cup achiote paste, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-12" data-separator=", " style="margin-bottom: 5px;">6 tablespoon light brown sugar, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-13" data-separator=", " style="margin-bottom: 5px;">4 cloves garlic, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-14" data-separator=", " style="margin-bottom: 5px;">1½ teaspoon oregano, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-15" data-separator=", " style="margin-bottom: 5px;">1½ teaspoon cumin, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-16" data-separator=", " style="margin-bottom: 5px;">1½ teaspoon black pepper, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-17" data-separator=", " style="margin-bottom: 5px;">½ teaspoon ground cinnamon, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-18" data-separator=", " style="margin-bottom: 5px;">¼ teaspoon ground cloves, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-19" data-separator="" style="margin-bottom: 5px;">2 tablespoon Kosher salt</span></div></li><li id="wprm-recipe-42893-step-1-2" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Remove the pork shoulder from the freezer and use a sharp knife to cut it into ¼-inch slices. </span></div></li><li id="wprm-recipe-42893-step-1-3" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Place the pork in a large dish and pour about three-quarters of the marinade over it. Turn the meat over and press the marinade into the pork. Cover and chill for up to 24 hours, preferably overnight. Add the remaining marinade/sauce to a container with a lid and refrigerate. </span></div></li><li id="wprm-recipe-42893-step-1-4" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Prepare your charcoal (or gas) grill to medium-high heat, creating a 2-zone (heat and no-heat) set-up. </span></div></li><li id="wprm-recipe-42893-step-1-5" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Cut the top and base off the pineapple. Cut two ½-inch slices. Cut the remaining pineapple into slices or chunks, cutting around the core. </span></div><div class="wprm-recipe-instruction-ingredients wprm-recipe-instruction-ingredients-inline wprm-block-text-faded" style="margin-top: -5px; margin-bottom: 5px;"><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-22" data-separator="" style="margin-bottom: 5px;">1 whole pineapple</span></div></li><li id="wprm-recipe-42893-step-1-6" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Press one pineapple slice down the skewer and then layer the marinated pork on the skewer. Top with the other pineapple slice. </span></div></li><li id="wprm-recipe-42893-step-1-7" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Place the skewer plate over the indirect heat and cover for 1 hour. </span></div></li><li id="wprm-recipe-42893-step-1-8" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">After 1 hour, use kitchen shears (or a sharp knife) to cut away dark spots on the edges of the meat. Cover and cook for another 45 minutes. </span></div></li><li id="wprm-recipe-42893-step-1-9" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Add the pineapple slices and cook for another 15 minutes (the meat should cook for 2 hours). Add the extra sauce to a saucepan and gently warm it. </span></div></li><li id="wprm-recipe-42893-step-1-10" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Carefully remove the skewer plate and pineapple from the grill. Cut the pineapple into chunks and use a large, sharp knife to slice pieces of meat from the skewer. </span></div></li><li id="wprm-recipe-42893-step-1-11" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px;"><span style="display: block;">Serve at once with warmed corn tortillas, garnished with the grilled chopped pineapple, cilantro, onion, warmed sauce, and lime wedges. </span></div><div class="wprm-recipe-instruction-ingredients wprm-recipe-instruction-ingredients-inline wprm-block-text-faded" style="margin-top: -5px; margin-bottom: 5px;"><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-21" data-separator=", " style="margin-bottom: 5px;">12 corn tortillas, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-23" data-separator=", " style="margin-bottom: 5px;">1 cup red onion, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-24" data-separator=", " style="margin-bottom: 5px;">cilantro, </span><span class="wprm-recipe-instruction-ingredient wprm-recipe-instruction-ingredient-42893-25" data-separator="" style="margin-bottom: 5px;">lime wedges</span></div></li></ul></div></div>
<div class="wprm-recipe-notes-container wprm-block-text-normal"><h3 class="wprm-recipe-header wprm-recipe-notes-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none" style="">Notes</h3><div class="wprm-recipe-notes"><span class="p1" style="display: block;"><strong><span style="color: #ff0000;">NOTE:</span></strong> Watch the video near the top of the recipe for visual guidance.</span><div class="wprm-spacer"></div>
<span style="display: block;">You can create a makeshift skewer plate by placing a slice of pineapple on a heatproof skillet (or pan) and inserting wooden or metal rod or rods into it. Add the meat to the rod or rods and top with the pineapple. </span><div class="wprm-spacer"></div>
<span style="display: block;">Be sure to make sure you will be able to close the lid with the tower of meat on the grill. This is important to test before you get started. </span><div class="wprm-spacer"></div>
<span style="display: block;">You can also roast the pork in your oven set at 400°F for approximately the same amount of time. Keep an eye on the meat and trim any edges that are starting to burn. </span><div class="wprm-spacer"></div>
<span style="display: block;">You can also simply grill the slices until the edges are crispy and the meat is cooked. This will only take about 15 to 25 minutes, depending on how thick your slices are. </span></div></div>
<h3 class="wprm-recipe-header wprm-recipe-nutrition-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none" style="">Nutrition</h3><div class="wprm-nutrition-label-container wprm-nutrition-label-container-simple wprm-block-text-normal" style="text-align: center;"><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-calories"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Calories: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">247</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">kcal</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-carbohydrates"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Carbohydrates: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">54</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-protein"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Protein: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">5</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fat"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">13</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-saturated_fat"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Saturated Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">0.4</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-polyunsaturated_fat"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Polyunsaturated Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-monounsaturated_fat"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Monounsaturated Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-cholesterol"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Cholesterol: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">0.2</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-sodium"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Sodium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">678</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-potassium"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Potassium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">481</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fiber"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Fiber: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">8</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-sugar"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Sugar: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">21</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-vitamin_a"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Vitamin A: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">3134</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">IU</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-vitamin_c"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Vitamin C: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">11</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-calcium"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Calcium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">97</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: #000000"> | </span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-iron"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-bold" style="color: #000000">Iron: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">2</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span></div>
<div class="wprm-call-to-action wprm-call-to-action-simple" style="color: #333333;margin: 0px;padding-top: 10px;padding-bottom: 10px;"><span class="wprm-recipe-icon wprm-call-to-action-icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 24 24"><g class="nc-icon-wrapper" fill="#9013fe"><path fill="#9013fe" d="M12,2.162c3.204,0,3.584,0.012,4.849,0.07c1.366,0.062,2.633,0.336,3.608,1.311 c0.975,0.975,1.249,2.242,1.311,3.608c0.058,1.265,0.07,1.645,0.07,4.849s-0.012,3.584-0.07,4.849 c-0.062,1.366-0.336,2.633-1.311,3.608c-0.975,0.975-2.242,1.249-3.608,1.311c-1.265,0.058-1.645,0.07-4.849,0.07 s-3.584-0.012-4.849-0.07c-1.366-0.062-2.633-0.336-3.608-1.311c-0.975-0.975-1.249-2.242-1.311-3.608 c-0.058-1.265-0.07-1.645-0.07-4.849s0.012-3.584,0.07-4.849c0.062-1.366,0.336-2.633,1.311-3.608 c0.975-0.975,2.242-1.249,3.608-1.311C8.416,2.174,8.796,2.162,12,2.162 M12,0C8.741,0,8.332,0.014,7.052,0.072 c-1.95,0.089-3.663,0.567-5.038,1.942C0.639,3.389,0.161,5.102,0.072,7.052C0.014,8.332,0,8.741,0,12 c0,3.259,0.014,3.668,0.072,4.948c0.089,1.95,0.567,3.663,1.942,5.038c1.375,1.375,3.088,1.853,5.038,1.942 C8.332,23.986,8.741,24,12,24s3.668-0.014,4.948-0.072c1.95-0.089,3.663-0.567,5.038-1.942c1.375-1.375,1.853-3.088,1.942-5.038 C23.986,15.668,24,15.259,24,12s-0.014-3.668-0.072-4.948c-0.089-1.95-0.567-3.663-1.942-5.038 c-1.375-1.375-3.088-1.853-5.038-1.942C15.668,0.014,15.259,0,12,0L12,0z"></path> <path data-color="color-2" d="M12,5.838c-3.403,0-6.162,2.759-6.162,6.162S8.597,18.162,12,18.162s6.162-2.759,6.162-6.162 S15.403,5.838,12,5.838z M12,16c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4S14.209,16,12,16z"></path> <circle data-color="color-2" cx="18.406" cy="5.594" r="1.44"></circle></g></svg></span> <span class="wprm-call-to-action-text-container"><span class="wprm-call-to-action-header" style="color: #333333;">Tried this recipe? Take a Picture!</span><span class="wprm-call-to-action-text">Mention <a href="https://www.instagram.com/HowToFeedALoon" target="_blank" rel="noreferrer noopener" style="color: #aa2203" data-wpel-link="external">@HowToFeedALoon</a> or tag <a href="https://www.instagram.com/explore/tags/HowToFeedALoon" target="_blank" rel="noreferrer noopener" style="color: #aa2203" data-wpel-link="external">#HowToFeedALoon</a>!</span></span></div>
</div></div></div>
<p>NOTE: This recipe is adapted from the amazing Chef Ford Fry from his <a href="https://amzn.to/3GDKp7b" rel="nofollow" data-wpel-link="external">TexMex Cookbook</a>. </p>
<!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description rdf:about="https://howtofeedaloon.com/grilled-tacos-al-pastor/"
dc:identifier="https://howtofeedaloon.com/grilled-tacos-al-pastor/"
dc:title="Grilled Tacos al Pastor"
trackback:ping="https://howtofeedaloon.com/grilled-tacos-al-pastor/trackback/" />
</rdf:RDF>-->
</div><div class='feast-modern-prev-next' style='position: relative;'><h2>More Mexican / Tex-Mex / Cal-Mex</h2><div class='feast-category-index feast-recipe-index'><ul class="fsri-list feast-grid-half feast-desktop-grid-fourth"><li class="listing-item"><a href="https://howtofeedaloon.com/homemade-corn-tortillas/" data-wpel-link="internal"><img width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A side view of a stack of homemade corn tortillas that are resting on a wooden board topped with a colorful napkin with a bowl of salsa and soften butter nearby." data-pin-nopin="true" fetchpriority="low" aria-hidden="true" decoding="async" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-360x540.jpg" /><noscript><img width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A side view of a stack of homemade corn tortillas that are resting on a wooden board topped with a colorful napkin with a bowl of salsa and soften butter nearby." data-pin-nopin="true" fetchpriority="low" aria-hidden="true" decoding="async" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2025/02/pile-of-homemade-corn-tortillas.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" /></noscript><div class="fsri-title">Homemade Corn Tortillas</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/turkey-burrito-bowl/" data-wpel-link="internal"><img width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="An overhead view of two white bowls that are both filled with a serving of a turkey burrito bowl and they are surrounded by smaller bowls of salsa, pico de gallos, cheese, and corn salsa." data-pin-nopin="true" fetchpriority="low" aria-hidden="true" decoding="async" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-360x540.jpg" /><noscript><img width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="An overhead view of two white bowls that are both filled with a serving of a turkey burrito bowl and they are surrounded by smaller bowls of salsa, pico de gallos, cheese, and corn salsa." data-pin-nopin="true" fetchpriority="low" aria-hidden="true" decoding="async" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2025/01/Turkey-Burrito-Bowl-overhead.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" /></noscript><div class="fsri-title">Turkey Burrito Bowl</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/best-ever-veggie-fajitas/" data-wpel-link="internal"><img width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="An overhead view of a large fajita skillet that is filled with a serving of veggie fajitas and surround by festive bowl of cheese, limes, sour cream, and a stack of charred flour tortillas." data-pin-nopin="true" fetchpriority="low" aria-hidden="true" decoding="async" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-360x540.jpg" /><noscript><img width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="An overhead view of a large fajita skillet that is filled with a serving of veggie fajitas and surround by festive bowl of cheese, limes, sour cream, and a stack of charred flour tortillas." data-pin-nopin="true" fetchpriority="low" aria-hidden="true" decoding="async" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2025/01/overhead-veggie-fajitas.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" /></noscript><div class="fsri-title">Best-Ever Veggie Fajitas</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/leftover-turkey-enchiladas-with-red-sauce/" data-wpel-link="internal"><img width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A straight-on view of a white rectangular baking dish filled with leftover turkey enchiladas with a red sauce and topped with chopped lettuce and pico de gallo." data-pin-nopin="true" fetchpriority="low" aria-hidden="true" decoding="async" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-360x540.jpg" /><noscript><img width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A straight-on view of a white rectangular baking dish filled with leftover turkey enchiladas with a red sauce and topped with chopped lettuce and pico de gallo." data-pin-nopin="true" fetchpriority="low" aria-hidden="true" decoding="async" srcset="https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2024/11/frontview-Leftover-Turkey-Enchiladas.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" /></noscript><div class="fsri-title">Leftover Turkey Enchiladas with Red Sauce</div></a></li></ul></div></div><footer class="entry-footer"></footer></article> <div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/grilled-tacos-al-pastor/#respond" style="display:none;" data-wpel-link="internal">Cancel reply</a></small></h3><form action="https://howtofeedaloon.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><div class="comment-form-wprm-rating">
<label for="wprm-comment-rating-3987773880">Recipe Rating</label> <span class="wprm-rating-stars">
<fieldset class="wprm-comment-ratings-container" data-original-rating="0" data-current-rating="0">
<legend>Recipe Rating</legend>
<input aria-label="Don't rate this recipe" name="wprm-comment-rating" value="0" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="margin-left: -21px !important; width: 24px !important; height: 24px !important;" checked="checked"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-0" fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
</defs>
<use xlink:href="#wprm-star-empty-0" x="4" y="4" />
<use xlink:href="#wprm-star-empty-0" x="36" y="4" />
<use xlink:href="#wprm-star-empty-0" x="68" y="4" />
<use xlink:href="#wprm-star-empty-0" x="100" y="4" />
<use xlink:href="#wprm-star-empty-0" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 1 out of 5 stars" name="wprm-comment-rating" value="1" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-1" fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-1" fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-1" x="4" y="4" />
<use xlink:href="#wprm-star-empty-1" x="36" y="4" />
<use xlink:href="#wprm-star-empty-1" x="68" y="4" />
<use xlink:href="#wprm-star-empty-1" x="100" y="4" />
<use xlink:href="#wprm-star-empty-1" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 2 out of 5 stars" name="wprm-comment-rating" value="2" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-2" fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-2" fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-2" x="4" y="4" />
<use xlink:href="#wprm-star-full-2" x="36" y="4" />
<use xlink:href="#wprm-star-empty-2" x="68" y="4" />
<use xlink:href="#wprm-star-empty-2" x="100" y="4" />
<use xlink:href="#wprm-star-empty-2" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 3 out of 5 stars" name="wprm-comment-rating" value="3" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-3" fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-3" fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-3" x="4" y="4" />
<use xlink:href="#wprm-star-full-3" x="36" y="4" />
<use xlink:href="#wprm-star-full-3" x="68" y="4" />
<use xlink:href="#wprm-star-empty-3" x="100" y="4" />
<use xlink:href="#wprm-star-empty-3" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 4 out of 5 stars" name="wprm-comment-rating" value="4" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-4" fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-4" fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-4" x="4" y="4" />
<use xlink:href="#wprm-star-full-4" x="36" y="4" />
<use xlink:href="#wprm-star-full-4" x="68" y="4" />
<use xlink:href="#wprm-star-full-4" x="100" y="4" />
<use xlink:href="#wprm-star-empty-4" x="132" y="4" />
</svg></span><br><input aria-label="Rate this recipe 5 out of 5 stars" name="wprm-comment-rating" value="5" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" id="wprm-comment-rating-3987773880" style="width: 24px !important; height: 24px !important;"><span aria-hidden="true" style="width: 120px !important; height: 24px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="106.66666666667px" height="16px" viewBox="0 0 160 32">
<defs>
<path class="wprm-star-full" id="wprm-star-full-5" fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-5" x="4" y="4" />
<use xlink:href="#wprm-star-full-5" x="36" y="4" />
<use xlink:href="#wprm-star-full-5" x="68" y="4" />
<use xlink:href="#wprm-star-full-5" x="100" y="4" />
<use xlink:href="#wprm-star-full-5" x="132" y="4" />
</svg></span> </fieldset>
</span>
</div>
<p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required /></p>
<p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p>
<p class="comment-subscription-form"><input type="checkbox" name="subscribe_blog" id="subscribe_blog" value="subscribe" style="width: auto; -moz-appearance: checkbox; -webkit-appearance: checkbox;" /> <label class="subscribe-label" id="subscribe-blog-label" for="subscribe_blog">Notify me of new posts by email.</label></p><p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='42866' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="8b5016b0cd" /></p><p style="display: none !important;" class="akismet-fields-container" data-prefix="ak_"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="128"/><script type="rocketlazyloadscript">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form> </div><!-- #respond -->
</main><aside class="sidebar sidebar-primary widget-area" role="complementary" aria-label="Primary Sidebar">
<div class="feast-layout feast-layout--modern-sidebar feast-modern-sidebar">
<div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="150" height="225" data-pin-nopin="true" fetchpriority="low" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20225'%3E%3C/svg%3E" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2-150x225.jpeg"><noscript><img width="150" height="225" data-pin-nopin="true" fetchpriority="low" decoding="async" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2-150x225.jpeg" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" loading="lazy"></noscript></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="150" height="225" data-pin-nopin="true" fetchpriority="low" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20225'%3E%3C/svg%3E" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3-150x225.jpeg"><noscript><img width="150" height="225" data-pin-nopin="true" fetchpriority="low" decoding="async" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3-150x225.jpeg" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" loading="lazy"></noscript></div>
<div class="wp-block-media-text alignwide is-stacked-on-mobile is-variation-media-text-sidebar-bio"><figure class="wp-block-media-text__media"><img data-pin-nopin="true" decoding="async" width="360" height="360" fetchpriority="low" src="https://howtofeedaloon.com/wp-content/uploads/2025/02/kris-wes-360x360.jpg" alt="" data-skip-lazy class="wp-image-39024 size-feast-content-360px-wide" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/02/kris-wes-360x360.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/02/kris-wes-370x370.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/02/kris-wes-150x150.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/02/kris-wes-180x180.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/02/kris-wes-96x96.jpg 96w, https://howtofeedaloon.com/wp-content/uploads/2025/02/kris-wes.jpg 400w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/02/kris-wes.jpg"></figure><div class="wp-block-media-text__content">
<h3 class="wp-block-heading has-text-align-center">Welcome!</h3>
<p class="has-text-align-center">Kris & Wesley (The Loon) live for fun, food, and fabulousness. "How to Feed a Loon" is a celebration of just that. Come join us on this joyous culinary ride.</p>
<div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex">
<div class="wp-block-button is-style-button-right-arrow"><a class="wp-block-button__link wp-element-button" href="https://howtofeedaloon.com/aboutus/" data-wpel-link="internal">More about us</a></div>
</div>
</div></div>
<div class="feast-social-media feast-social-media--align-center"><a class="social-media__link" href="https://www.facebook.com/HowToFeedaLoon" target="_blank" rel="noopener noreferrer" aria-label="Facebook" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 320 512" width="20px" height="20px" role="graphics-symbol" aria-label="Facebook Icon"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" fill="#000000"></path></svg></a><a class="social-media__link" href="https://www.youtube.com/channel/UCF4juqn-kPpzveBzlHeiSFQ?sub_confirmation=1" target="_blank" rel="noopener noreferrer" aria-label="Youtube" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 576 512" width="20px" height="20px" role="graphics-symbol" aria-label="YouTube Icon"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" fill="#000000"></path></svg></a><a class="social-media__link" href="https://www.pinterest.com/howtofeedaloon/" target="_blank" rel="noopener noreferrer" aria-label="Pinterest" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 384 512" width="20px" height="20px" role="graphics-symbol" aria-label="Pinterest Icon"><path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" fill="#000000"></path></svg></a><a class="social-media__link" href="https://www.instagram.com/howtofeedaloon/" target="_blank" rel="noopener noreferrer" aria-label="Instagram" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid #00000000;border-radius:50%;"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 448 512" width="20px" height="20px" role="graphics-symbol" aria-label="Instagram Icon"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" fill="#000000"></path></svg></a></div>
<h3 class="wp-block-heading has-text-align-center" id="h-mother-s-day-brunch">Mother's Day Brunch</h3>
<div class="feast-category-index feast-recipe-index"><ul class="fsri-list feast-grid-half feast-desktop-grid-half"><li class="listing-item"><a href="https://howtofeedaloon.com/blueberry-almond-coffee-cake/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A blueberry almond coffee cake sitting on a white lattice cake stand." data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-1024x1536.jpg 1024w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view.jpg 1200w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/04/Blueberry-Almond-Coffee-Cake-front-view.jpg"><div class="fsri-title">Blueberry Almond Coffee Cake</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/how-to-make-the-fluffiest-scrambled-eggs/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="An overhead view of fluffiest scrambled eggs on a white plate topped with finely snipped chives and a gold fork on the plate, too." data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2023/10/scrambled-eggs-on-a-plate.jpg"><div class="fsri-title">Fluffiest Scrambled Eggs</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/classic-eggs-benedict/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="Classic eggs Benedict on a white plate next to cups of coffee and orange juice." data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-360x540.jpg"><noscript><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="Classic eggs Benedict on a white plate next to cups of coffee and orange juice." data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2019/04/eggs-benedict_Vertical-Video-Blog.jpg"></noscript><div class="fsri-title">Classic Eggs Benedict</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/ricotta-lemon-pancakes-vanilla-sauce/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="An antique plate holding ricotta pancakes with a strawberry on top and syrup being poured on top." data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-570x855.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-770x1155.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-360x540.jpg"><noscript><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="An antique plate holding ricotta pancakes with a strawberry on top and syrup being poured on top." data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-570x855.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-770x1155.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2018/07/pancakes_Vertical-Video-Blog.jpg"></noscript><div class="fsri-title">Ricotta Lemon Pancakes with Vanilla Sauce</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/homemade-buttermilk-biscuits/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A basket that is lined with an orange checkered cloth and is filled with freshly baked Southern biscuits." data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-360x540.jpg"><noscript><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A basket that is lined with an orange checkered cloth and is filled with freshly baked Southern biscuits." data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2023/01/buttermilk-biscuit-front-view.jpg"></noscript><div class="fsri-title">Homemade Southern Buttermilk Biscuits</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/wild-berry-bread-pudding-with-orange-sauce/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A straight-on view of a slice of mixed berry bread pudding with orange sauce sitting on a white dessert plate with a glass mug of creamed coffee in the background." data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-360x540.jpg"><noscript><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A straight-on view of a slice of mixed berry bread pudding with orange sauce sitting on a white dessert plate with a glass mug of creamed coffee in the background." data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-360x541.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-720x1082.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-180x271.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-768x1154.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-570x857.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-770x1157.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view-386x580.jpg 386w, https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2024/08/mixed-fruit-bread-pudding-front-view.jpg"></noscript><div class="fsri-title">Wild Berry Bread Pudding with Orange Sauce</div></a></li></ul></div>
<h3 class="wp-block-heading has-text-align-center" id="h-popular-recipes">Popular Recipes</h3>
<div class="feast-category-index feast-recipe-index"><ul class="fsri-list feast-grid-half feast-desktop-grid-half"><li class="listing-item"><a href="https://howtofeedaloon.com/best-ever-chicken-salad/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="best-ever chicken salad recipe" data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-167x250.jpg 167w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-300x450.jpg 300w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-360x540.jpg"><noscript><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="best-ever chicken salad recipe" data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-167x250.jpg 167w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog-300x450.jpg 300w, https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2018/01/chicken-salad-Vertical-Video-Blog.jpg"></noscript><div class="fsri-title">Best-Ever Chicken Salad</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/roasted-tomato-basil-soup/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A white soup filled with roasted tomato basil soup next to sliced grilled cheese sandwiches." data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-570x855.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-770x1155.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-360x540.jpg"><noscript><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A white soup filled with roasted tomato basil soup next to sliced grilled cheese sandwiches." data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-768x1152.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-570x855.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-770x1155.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-720x1080.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2014/03/Tomato_soup_Feature-e1396220949957.jpg"></noscript><div class="fsri-title">Roasted Tomato Basil Soup</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/amazing-mahi-mahi-tacos/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="Mahi Mahi tacos on a wooden table in a taco holder" data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-360x540.jpg"><noscript><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="Mahi Mahi tacos on a wooden table in a taco holder" data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2019/03/mahi-mahi_Vertical-Video-Blog.jpg"></noscript><div class="fsri-title">Amazing Mahi Mahi Tacos</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/chicken-francaise/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A lemon wedge being squeezed onto a platter of chicken francese" data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-360x540.jpg"><noscript><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="A lemon wedge being squeezed onto a platter of chicken francese" data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2017/09/chicken-fran_Vertical-Video-Blog.jpg"></noscript><div class="fsri-title">Chicken Francese</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/shrimp-grits/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="Southern Shrimp and Cheesy Grits recipe" data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-167x250.jpg 167w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-300x450.jpg 300w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-360x540.jpg"><noscript><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="Southern Shrimp and Cheesy Grits recipe" data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-167x250.jpg 167w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog-300x450.jpg 300w, https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2015/04/shrimp-grits-Vertical-Video-Blog.jpg"></noscript><div class="fsri-title">Southern Shrimp and Cheesy Grits</div></a></li><li class="listing-item"><a href="https://howtofeedaloon.com/slow-roasted-pork-shoulder/" data-wpel-link="internal"><img fetchpriority="low" decoding="async" width="360" height="540" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%20540'%3E%3C/svg%3E" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="Slow Roasted Pork Shoulder on a platter with a side of gravy" data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2.jpg 1000w" data-lazy-sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2.jpg" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-360x540.jpg"><noscript><img fetchpriority="low" decoding="async" width="360" height="540" src="https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-360x540.jpg" class="feast_2x3_thumbnail fsri-image wp-post-image" alt="Slow Roasted Pork Shoulder on a platter with a side of gravy" data-pin-nopin="true" aria-hidden="true" srcset="https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-360x540.jpg 360w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-150x225.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-370x555.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-768x1151.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-1270x1904.jpg 1270w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-570x854.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-770x1154.jpg 770w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-1170x1754.jpg 1170w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-387x580.jpg 387w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-720x1079.jpg 720w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2-180x270.jpg 180w, https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2.jpg 1000w" sizes="(max-width: 360px) 100vw, 360px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2015/09/pork-shoulder_Vertical-Video-Blog-2.jpg"></noscript><div class="fsri-title">Slow Roasted Pork Shoulder</div></a></li></ul></div>
<p></p>
</div>
</aside></div></div><footer class="site-footer"><div class="wrap">
<div class="feast-layout feast-layout--modern-footer feast-modern-footer">
<h2 class="screen-reader-text">Footer</h2><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="150" height="225" fetchpriority="low" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20225'%3E%3C/svg%3E" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2-150x225.jpeg"><noscript><img width="150" height="225" fetchpriority="low" decoding="async" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2-150x225.jpeg" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-2.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" loading="lazy"></noscript></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="150" height="225" fetchpriority="low" decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20225'%3E%3C/svg%3E" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" data-lazy-src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3-150x225.jpeg"><noscript><img width="150" height="225" fetchpriority="low" decoding="async" src="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3-150x225.jpeg" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2025/05/Tacos-al-Pastor-3.jpeg" data-pin-title="Grilled Tacos al Pastor" data-pin-description="Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro. " class="dpsp-post-pinterest-image-hidden-inner" loading="lazy"></noscript></div>
<div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-2 wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="#">↑ back to top</a></div>
</div>
<figure class="wp-block-image size-full"><img decoding="async" width="800" height="350" fetchpriority="low" src="https://howtofeedaloon.com/wp-content/uploads/2019/08/FEATURED-IN-copy.jpg" alt="" data-skip-lazy class="wp-image-15649" srcset="https://howtofeedaloon.com/wp-content/uploads/2019/08/FEATURED-IN-copy.jpg 800w, https://howtofeedaloon.com/wp-content/uploads/2019/08/FEATURED-IN-copy-150x66.jpg 150w, https://howtofeedaloon.com/wp-content/uploads/2019/08/FEATURED-IN-copy-370x162.jpg 370w, https://howtofeedaloon.com/wp-content/uploads/2019/08/FEATURED-IN-copy-768x336.jpg 768w, https://howtofeedaloon.com/wp-content/uploads/2019/08/FEATURED-IN-copy-570x249.jpg 570w, https://howtofeedaloon.com/wp-content/uploads/2019/08/FEATURED-IN-copy-770x337.jpg 770w" sizes="(max-width: 800px) 100vw, 800px" data-pin-media="https://howtofeedaloon.com/wp-content/uploads/2019/08/FEATURED-IN-copy.jpg"></figure>
<div class="wp-block-group is-style-full-width-feature-wrapper"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-11 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%"><div class="feast-social-media feast-social-media--align-center"><a class="social-media__link" href="https://www.facebook.com/HowToFeedaLoon" target="_blank" rel="noopener noreferrer" aria-label="Facebook" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid none;border-radius:40px;"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 320 512" width="18" height="18" role="graphics-symbol" aria-label="Facebook Icon"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" fill="#000000"></path></svg></a><a class="social-media__link" href="https://www.youtube.com/channel/UCF4juqn-kPpzveBzlHeiSFQ?sub_confirmation=1" target="_blank" rel="noopener noreferrer" aria-label="Youtube" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid none;border-radius:40px;"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 576 512" width="18" height="18" role="graphics-symbol" aria-label="YouTube Icon"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" fill="#000000"></path></svg></a><a class="social-media__link" href="https://www.instagram.com/howtofeedaloon/" target="_blank" rel="noopener noreferrer" aria-label="Instagram" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid none;border-radius:40px;"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 448 512" width="18" height="18" role="graphics-symbol" aria-label="Instagram Icon"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" fill="#000000"></path></svg></a><a class="social-media__link" href="https://www.pinterest.com/howtofeedaloon/" target="_blank" rel="noopener noreferrer" aria-label="Pinterest" data-wpel-link="ignore" style="background-color:#5ed2da;border:1px solid none;border-radius:40px;"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 384 512" width="18" height="18" role="graphics-symbol" aria-label="Pinterest Icon"><path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" fill="#000000"></path></svg></a></div></div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<div class="wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-core-columns-is-layout-10 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow">
<h3 class="wp-block-heading has-text-align-center">Explore</h3>
<ul class="wp-block-list">
<li style="letter-spacing:0px"><a href="/recipes/" data-wpel-link="internal">Recipe Index</a></li>
<li style="letter-spacing:0px"><a href="https://howtofeedaloon.com/aboutus/" data-type="page" data-id="8426" data-wpel-link="internal">About Us</a></li>
<li style="letter-spacing:0px"><a href="https://howtofeedaloon.com/subscribe/" data-type="page" data-id="39034" data-wpel-link="internal">Subscribe</a></li>
</ul>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h3 class="wp-block-heading has-text-align-center">About</h3>
<ul class="wp-block-list">
<li style="letter-spacing:0px"><a href="https://howtofeedaloon.com/privacy-policy/" data-type="page" data-id="8428" data-wpel-link="internal">Privacy Policy</a></li>
<li style="letter-spacing:0px"><a href="https://howtofeedaloon.com/contact/" data-type="page" data-id="1592" data-wpel-link="internal">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
<p class="has-small-font-size" style="letter-spacing:0px">Copyright © 2025 <strong>How to Feed a Loon</strong> • <em>This website contains affiliate links, which means that if you click on a product link, we may receive a commission in return. How To Feed a Loon is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com.</em></p>
<p class="has-text-align-center"></p>
</div></div>
<p></p>
</div>
</div></footer></div><script data-no-optimize='1' data-cfasync='false' id='cls-insertion-3471352'>!function(){"use strict";function e(){return e=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var n in i)Object.prototype.hasOwnProperty.call(i,n)&&(e[n]=i[n])}return e},e.apply(this,arguments)}window.adthriveCLS.buildDate="2025-05-08";const t={AdDensity:"addensity",AdLayout:"adlayout",Interstitial:"interstitial",StickyOutstream:"stickyoutstream"},i="Below_Post",n="Content",s="Recipe",o="Footer",r="Header",a="Sidebar",l="desktop",c="mobile",d="Video_Collapse_Autoplay_SoundOff",h="Video_Individual_Autoplay_SOff",u="Video_Coll_SOff_Smartphone",p="Video_In-Post_ClicktoPlay_SoundOn",m=e=>{const t={};return function(...i){const n=JSON.stringify(i);if(t[n])return t[n];const s=e.apply(this,i);return t[n]=s,s}},g=navigator.userAgent,y=m((e=>/Chrom|Applechromium/.test(e||g))),_=m((()=>/WebKit/.test(g))),f=m((()=>y()?"chromium":_()?"webkit":"other"));const v=new class{info(e,t,...i){this.call(console.info,e,t,...i)}warn(e,t,...i){this.call(console.warn,e,t,...i)}error(e,t,...i){this.call(console.error,e,t,...i),this.sendErrorLogToCommandQueue(e,t,...i)}event(e,t,...i){var n;"debug"===(null==(n=window.adthriveCLS)?void 0:n.bucket)&&this.info(e,t)}sendErrorLogToCommandQueue(e,t,...i){window.adthrive=window.adthrive||{},window.adthrive.cmd=window.adthrive.cmd||[],window.adthrive.cmd.push((()=>{void 0!==window.adthrive.logError&&"function"==typeof window.adthrive.logError&&window.adthrive.logError(e,t,i)}))}call(e,t,i,...n){const s=[`%c${t}::${i} `],o=["color: #999; font-weight: bold;"];n.length>0&&"string"==typeof n[0]&&s.push(n.shift()),o.push(...n);try{Function.prototype.apply.call(e,console,[s.join(""),...o])}catch(e){return void console.error(e)}}},b=(e,t)=>null==e||e!=e?t:e,S=e=>{const t=e.offsetHeight,i=e.offsetWidth,n=e.getBoundingClientRect(),s=document.body,o=document.documentElement,r=window.pageYOffset||o.scrollTop||s.scrollTop,a=window.pageXOffset||o.scrollLeft||s.scrollLeft,l=o.clientTop||s.clientTop||0,c=o.clientLeft||s.clientLeft||0,d=Math.round(n.top+r-l),h=Math.round(n.left+a-c);return{top:d,left:h,bottom:d+t,right:h+i,width:i,height:t}},E=e=>{let t={};const i=((e=window.location.search)=>{const t=0===e.indexOf("?")?1:0;return e.slice(t).split("&").reduce(((e,t)=>{const[i,n]=t.split("=");return e.set(i,n),e}),new Map)})().get(e);if(i)try{const n=decodeURIComponent(i).replace(/\+/g,"");t=JSON.parse(n),v.event("ExperimentOverridesUtil","getExperimentOverrides",e,t)}catch(e){}return t},x=m(((e=navigator.userAgent)=>/Windows NT|Macintosh/i.test(e))),w=m((()=>{const e=navigator.userAgent,t=/Tablet|iPad|Playbook|Nook|webOS|Kindle|Android (?!.*Mobile).*Safari|CrOS/i.test(e);return/Mobi|iP(hone|od)|Opera Mini/i.test(e)&&!t})),A=(e,t,i=document)=>{const n=((e=document)=>{const t=e.querySelectorAll("article");if(0===t.length)return null;const i=Array.from(t).reduce(((e,t)=>t.offsetHeight>e.offsetHeight?t:e));return i&&i.offsetHeight>1.5*window.innerHeight?i:null})(i),s=n?[n]:[],o=[];e.forEach((e=>{const n=Array.from(i.querySelectorAll(e.elementSelector)).slice(0,e.skip);var r;(r=e.elementSelector,r.includes(",")?r.split(","):[r]).forEach((r=>{const a=i.querySelectorAll(r);for(let i=0;i<a.length;i++){const r=a[i];if(t.map.some((({el:e})=>e.isEqualNode(r))))continue;const l=r&&r.parentElement;l&&l!==document.body?s.push(l):s.push(r),-1===n.indexOf(r)&&o.push({dynamicAd:e,element:r})}}))}));const r=((e=document)=>(e===document?document.body:e).getBoundingClientRect().top)(i),a=o.sort(((e,t)=>e.element.getBoundingClientRect().top-r-(t.element.getBoundingClientRect().top-r)));return[s,a]};class C{}const D=["mcmpfreqrec"];const P=new class extends C{init(e){this._gdpr="true"===e.gdpr,this._shouldQueue=this._gdpr}clearQueue(e){e&&(this._shouldQueue=!1,this._sessionStorageHandlerQueue.forEach((e=>{this.setSessionStorage(e.key,e.value)})),this._localStorageHandlerQueue.forEach((e=>{if("adthrive_abgroup"===e.key){const t=Object.keys(e.value)[0],i=e.value[t],n=e.value[`${t}_weight`];this.getOrSetABGroupLocalStorageValue(t,i,n,{value:24,unit:"hours"})}else e.expiry?"internal"===e.type?this.setExpirableInternalLocalStorage(e.key,e.value,{expiry:e.expiry,resetOnRead:e.resetOnRead}):this.setExpirableExternalLocalStorage(e.key,e.value,{expiry:e.expiry,resetOnRead:e.resetOnRead}):"internal"===e.type?this.setInternalLocalStorage(e.key,e.value):this.setExternalLocalStorage(e.key,e.value)})),this._cookieHandlerQueue.forEach((e=>{"internal"===e.type?this.setInternalCookie(e.key,e.value):this.setExternalCookie(e.key,e.value)}))),this._sessionStorageHandlerQueue=[],this._localStorageHandlerQueue=[],this._cookieHandlerQueue=[]}readInternalCookie(e){return this._verifyInternalKey(e),this._readCookie(e)}readExternalCookie(e){return this._readCookie(e)}readInternalLocalStorage(e){return this._verifyInternalKey(e),this._readFromLocalStorage(e)}readExternalLocalStorage(e){return this._readFromLocalStorage(e)}readSessionStorage(e){const t=window.sessionStorage.getItem(e);if(!t)return null;try{return JSON.parse(t)}catch(e){return t}}deleteCookie(e){document.cookie=`${e}=; SameSite=None; Secure; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/`}deleteLocalStorage(e){window.localStorage.removeItem(e)}deleteSessionStorage(e){window.sessionStorage.removeItem(e)}setInternalCookie(e,t,i){this._verifyInternalKey(e),this._setCookieValue("internal",e,t,i)}setExternalCookie(e,t,i){this._setCookieValue("external",e,t,i)}setInternalLocalStorage(e,t){if(this._verifyInternalKey(e),this._gdpr&&this._shouldQueue){const i={key:e,value:t,type:"internal"};this._localStorageHandlerQueue.push(i)}else{const i="string"==typeof t?t:JSON.stringify(t);window.localStorage.setItem(e,i)}}setExternalLocalStorage(e,t){if(this._gdpr&&this._shouldQueue){const i={key:e,value:t,type:"external"};this._localStorageHandlerQueue.push(i)}else{const i="string"==typeof t?t:JSON.stringify(t);window.localStorage.setItem(e,i)}}setExpirableInternalLocalStorage(e,t,i){this._verifyInternalKey(e);try{var n;const o=null!=(n=null==i?void 0:i.expiry)?n:{value:400,unit:"days"};var s;const r=null!=(s=null==i?void 0:i.resetOnRead)&&s;if(this._gdpr&&this._shouldQueue){const i={key:e,value:t,type:"internal",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};this._localStorageHandlerQueue.push(i)}else{const i={value:t,type:"internal",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};window.localStorage.setItem(e,JSON.stringify(i))}}catch(e){console.error(e)}}setExpirableExternalLocalStorage(e,t,i){try{var n;const o=null!=(n=null==i?void 0:i.expiry)?n:{value:400,unit:"days"};var s;const r=null!=(s=null==i?void 0:i.resetOnRead)&&s;if(this._gdpr&&this._shouldQueue){const i={key:e,value:JSON.stringify(t),type:"external",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};this._localStorageHandlerQueue.push(i)}else{const i={value:t,type:"external",expires:this._getExpiryDate(o),expiry:o,resetOnRead:r};window.localStorage.setItem(e,JSON.stringify(i))}}catch(e){console.error(e)}}setSessionStorage(e,t){if(this._gdpr&&this._shouldQueue){const i={key:e,value:t};this._sessionStorageHandlerQueue.push(i)}else{const i="string"==typeof t?t:JSON.stringify(t);window.sessionStorage.setItem(e,i)}}getOrSetABGroupLocalStorageValue(t,i,n,s,o=!0){const r="adthrive_abgroup",a=this.readInternalLocalStorage(r);if(null!==a){const e=a[t];var l;const i=null!=(l=a[`${t}_weight`])?l:null;if(this._isValidABGroupLocalStorageValue(e))return[e,i]}const c=e({},a,{[t]:i,[`${t}_weight`]:n});return s?this.setExpirableInternalLocalStorage(r,c,{expiry:s,resetOnRead:o}):this.setInternalLocalStorage(r,c),[i,n]}_isValidABGroupLocalStorageValue(e){return null!=e&&!("number"==typeof e&&isNaN(e))}_getExpiryDate({value:e,unit:t}){const i=new Date;return"milliseconds"===t?i.setTime(i.getTime()+e):"seconds"==t?i.setTime(i.getTime()+1e3*e):"minutes"===t?i.setTime(i.getTime()+60*e*1e3):"hours"===t?i.setTime(i.getTime()+60*e*60*1e3):"days"===t?i.setTime(i.getTime()+24*e*60*60*1e3):"months"===t&&i.setTime(i.getTime()+30*e*24*60*60*1e3),i.toUTCString()}_resetExpiry(e){return e.expires=this._getExpiryDate(e.expiry),e}_readCookie(e){const t=document.cookie.split("; ").find((t=>t.split("=")[0]===e));if(!t)return null;const i=t.split("=")[1];if(i)try{return JSON.parse(decodeURIComponent(i))}catch(e){return decodeURIComponent(i)}return null}_readFromLocalStorage(e){const t=window.localStorage.getItem(e);if(!t)return null;try{const n=JSON.parse(t),s=n.expires&&(new Date).getTime()>=new Date(n.expires).getTime();if("adthrive_abgroup"===e&&n.created)return window.localStorage.removeItem(e),null;if(n.resetOnRead&&n.expires&&!s){const t=this._resetExpiry(n);var i;return window.localStorage.setItem(e,JSON.stringify(n)),null!=(i=t.value)?i:t}if(s)return window.localStorage.removeItem(e),null;if(!n.hasOwnProperty("value"))return n;try{return JSON.parse(n.value)}catch(e){return n.value}}catch(e){return t}}_setCookieValue(e,t,i,n){try{if(this._gdpr&&this._shouldQueue){const n={key:t,value:i,type:e};this._cookieHandlerQueue.push(n)}else{var s;const e=this._getExpiryDate(null!=(s=null==n?void 0:n.expiry)?s:{value:400,unit:"days"});var o;const a=null!=(o=null==n?void 0:n.sameSite)?o:"None";var r;const l=null==(r=null==n?void 0:n.secure)||r,c="object"==typeof i?JSON.stringify(i):i;document.cookie=`${t}=${c}; SameSite=${a}; ${l?"Secure;":""} expires=${e}; path=/`}}catch(e){}}_verifyInternalKey(e){const t=e.startsWith("adthrive_"),i=e.startsWith("adt_");if(!t&&!i&&!D.includes(e))throw new Error('When reading an internal cookie, the key must start with "adthrive_" or "adt_" or be part of the allowed legacy keys.')}constructor(...e){super(...e),this.name="BrowserStorage",this.disable=!1,this.gdprPurposes=[1],this._sessionStorageHandlerQueue=[],this._localStorageHandlerQueue=[],this._cookieHandlerQueue=[],this._shouldQueue=!1}},k=(e,i,n)=>{switch(i){case t.AdDensity:return((e,t)=>{const i=e.adDensityEnabled,n=e.adDensityLayout.pageOverrides.find((e=>!!document.querySelector(e.pageSelector)&&(e[t].onePerViewport||"number"==typeof e[t].adDensity)));return!i||!n})(e,n);case t.StickyOutstream:return(e=>{var t,i,n;const s=null==(n=e.videoPlayers)||null==(i=n.partners)||null==(t=i.stickyOutstream)?void 0:t.blockedPageSelectors;return!s||!document.querySelector(s)})(e);case t.Interstitial:return(e=>{const t=e.adOptions.interstitialBlockedPageSelectors;return!t||!document.querySelector(t)})(e);default:return!0}},O=t=>{try{return{valid:!0,elements:document.querySelectorAll(t)}}catch(t){return e({valid:!1},t)}},I=e=>""===e?{valid:!0}:O(e),M=(e,t)=>{if(!e)return!1;const i=!!e.enabled,n=null==e.dateStart||Date.now()>=e.dateStart,s=null==e.dateEnd||Date.now()<=e.dateEnd,o=null===e.selector||""!==e.selector&&!!document.querySelector(e.selector),r="mobile"===e.platform&&"mobile"===t,a="desktop"===e.platform&&"desktop"===t,l=null===e.platform||"all"===e.platform||r||a,c="bernoulliTrial"===e.experimentType?1===e.variants.length:(e=>{const t=e.reduce(((e,t)=>t.weight?t.weight+e:e),0);return e.length>0&&e.every((e=>{const t=e.value,i=e.weight;return!(null==t||"number"==typeof t&&isNaN(t)||!i)}))&&100===t})(e.variants);return c||v.error("SiteTest","validateSiteExperiment","experiment presented invalid choices for key:",e.key,e.variants),i&&n&&s&&o&&l&&c},L=["siteId","siteName","adOptions","breakpoints","adUnits"];class R{get enabled(){return!!this._clsGlobalData&&!!this._clsGlobalData.siteAds&&((e,t=L)=>{if(!e)return!1;for(let i=0;i<t.length;i++)if(!e[t[i]])return!1;return!0})(this._clsGlobalData.siteAds)}get error(){return!(!this._clsGlobalData||!this._clsGlobalData.error)}set siteAds(e){this._clsGlobalData.siteAds=e}get siteAds(){return this._clsGlobalData.siteAds}set disableAds(e){this._clsGlobalData.disableAds=e}get disableAds(){return this._clsGlobalData.disableAds}set enabledLocations(e){this._clsGlobalData.enabledLocations=e}get enabledLocations(){return this._clsGlobalData.enabledLocations}get injectedFromPlugin(){return this._clsGlobalData.injectedFromPlugin}set injectedFromPlugin(e){this._clsGlobalData.injectedFromPlugin=e}get injectedFromSiteAds(){return this._clsGlobalData.injectedFromSiteAds}set injectedFromSiteAds(e){this._clsGlobalData.injectedFromSiteAds=e}overwriteInjectedSlots(e){this._clsGlobalData.injectedSlots=e}setInjectedSlots(e){this._clsGlobalData.injectedSlots=this._clsGlobalData.injectedSlots||[],this._clsGlobalData.injectedSlots.push(e)}get injectedSlots(){return this._clsGlobalData.injectedSlots}setInjectedVideoSlots(e){this._clsGlobalData.injectedVideoSlots=this._clsGlobalData.injectedVideoSlots||[],this._clsGlobalData.injectedVideoSlots.push(e)}get injectedVideoSlots(){return this._clsGlobalData.injectedVideoSlots}setInjectedScripts(e){this._clsGlobalData.injectedScripts=this._clsGlobalData.injectedScripts||[],this._clsGlobalData.injectedScripts.push(e)}get getInjectedScripts(){return this._clsGlobalData.injectedScripts}setExperiment(e,t,i=!1){this._clsGlobalData.experiments=this._clsGlobalData.experiments||{},this._clsGlobalData.siteExperiments=this._clsGlobalData.siteExperiments||{};(i?this._clsGlobalData.siteExperiments:this._clsGlobalData.experiments)[e]=t}getExperiment(e,t=!1){const i=t?this._clsGlobalData.siteExperiments:this._clsGlobalData.experiments;return i&&i[e]}setWeightedChoiceExperiment(e,t,i=!1){this._clsGlobalData.experimentsWeightedChoice=this._clsGlobalData.experimentsWeightedChoice||{},this._clsGlobalData.siteExperimentsWeightedChoice=this._clsGlobalData.siteExperimentsWeightedChoice||{};(i?this._clsGlobalData.siteExperimentsWeightedChoice:this._clsGlobalData.experimentsWeightedChoice)[e]=t}getWeightedChoiceExperiment(e,t=!1){var i,n;const s=t?null==(i=this._clsGlobalData)?void 0:i.siteExperimentsWeightedChoice:null==(n=this._clsGlobalData)?void 0:n.experimentsWeightedChoice;return s&&s[e]}get branch(){return this._clsGlobalData.branch}get bucket(){return this._clsGlobalData.bucket}set videoDisabledFromPlugin(e){this._clsGlobalData.videoDisabledFromPlugin=e}get videoDisabledFromPlugin(){return this._clsGlobalData.videoDisabledFromPlugin}set targetDensityLog(e){this._clsGlobalData.targetDensityLog=e}get targetDensityLog(){return this._clsGlobalData.targetDensityLog}getIOSDensity(e){const t=[{weight:100,adDensityPercent:0},{weight:0,adDensityPercent:25},{weight:0,adDensityPercent:50}],i=t.map((e=>e.weight)),{index:n}=(e=>{const t={index:-1,weight:-1};if(!e||0===e.length)return t;const i=e.reduce(((e,t)=>e+t),0);if(0===i)return t;const n=Math.random()*i;let s=0,o=e[s];for(;n>o;)o+=e[++s];return{index:s,weight:e[s]}})(i),s=e-e*(t[n].adDensityPercent/100);return this.setWeightedChoiceExperiment("iosad",t[n].adDensityPercent),s}getTargetDensity(e){return((e=navigator.userAgent)=>/iP(hone|od|ad)/i.test(e))()?this.getIOSDensity(e):e}get removeVideoTitleWrapper(){return this._clsGlobalData.siteAds.adOptions.removeVideoTitleWrapper}constructor(){this._clsGlobalData=window.adthriveCLS}}class T{static getScrollTop(){return(window.pageYOffset||document.documentElement.scrollTop)-(document.documentElement.clientTop||0)}static getScrollBottom(){return this.getScrollTop()+(document.documentElement.clientHeight||0)}static shufflePlaylist(e){let t,i,n=e.length;for(;0!==n;)i=Math.floor(Math.random()*e.length),n-=1,t=e[n],e[n]=e[i],e[i]=t;return e}static isMobileLandscape(){return window.matchMedia("(orientation: landscape) and (max-height: 480px)").matches}static playerViewable(e){const t=e.getBoundingClientRect();return this.isMobileLandscape()?window.innerHeight>t.top+t.height/2&&t.top+t.height/2>0:window.innerHeight>t.top+t.height/2}static createQueryString(e){return Object.keys(e).map((t=>`${t}=${e[t]}`)).join("&")}static createEncodedQueryString(e){return Object.keys(e).map((t=>`${t}=${encodeURIComponent(e[t])}`)).join("&")}static setMobileLocation(e){return"top-left"===(e=e||"bottom-right")?e="adthrive-collapse-top-left":"top-right"===e?e="adthrive-collapse-top-right":"bottom-left"===e?e="adthrive-collapse-bottom-left":"bottom-right"===e?e="adthrive-collapse-bottom-right":"top-center"===e&&(e=w()?"adthrive-collapse-top-center":"adthrive-collapse-bottom-right"),e}static addMaxResolutionQueryParam(e){const t=`max_resolution=${w()?"320":"1280"}`,[i,n]=String(e).split("?");return`${i}?${n?n+`&${t}`:t}`}}class j{constructor(e){this._clsOptions=e,this.removeVideoTitleWrapper=b(this._clsOptions.siteAds.adOptions.removeVideoTitleWrapper,!1);const t=this._clsOptions.siteAds.videoPlayers;this.footerSelector=b(t&&t.footerSelector,""),this.players=b(t&&t.players.map((e=>(e.mobileLocation=T.setMobileLocation(e.mobileLocation),e))),[]),this.relatedSettings=t&&t.contextual}}class H{constructor(e){this.mobileStickyPlayerOnPage=!1,this.playlistPlayerAdded=!1,this.relatedPlayerAdded=!1,this.footerSelector="",this.removeVideoTitleWrapper=!1,this.videoAdOptions=new j(e),this.players=this.videoAdOptions.players,this.relatedSettings=this.videoAdOptions.relatedSettings,this.removeVideoTitleWrapper=this.videoAdOptions.removeVideoTitleWrapper,this.footerSelector=this.videoAdOptions.footerSelector}}class V{}class N extends V{get(){if(this._probability<0||this._probability>1)throw new Error(`Invalid probability: ${this._probability}`);return Math.random()<this._probability}constructor(e){super(),this._probability=e}}class G{setExperimentKey(e=!1){this._clsOptions.setExperiment(this.abgroup,this.result,e)}constructor(){this._clsOptions=new R,this.shouldUseCoreExperimentsConfig=!1}}class W extends G{get result(){return this._result}run(){return new N(this.weight).get()}constructor(e){super(),this._result=!1,this.key="ParallaxAdsExperiment",this.abgroup="parallax",this._choices=[{choice:!0},{choice:!1}],this.weight=0;!!w()&&e.largeFormatsMobile&&(this._result=this.run(),this.setExperimentKey())}}const B=[[728,90],[300,250],[300,600],[320,50],[970,250],[160,600],[300,1050],[336,280],[970,90],[300,50],[320,100],[468,60],[250,250],[120,240],[1,1],[300,300],[552,334],[300,420],[728,250],[320,300],[300,390]],F=[[300,600],[160,600]],z=new Map([[o,1],[r,2],[a,3],[n,4],[s,5],["Sidebar_sticky",6],["Below Post",7]]),q=(e,t)=>{const{location:i,sticky:n}=e;if(i===s&&t){const{recipeMobile:e,recipeDesktop:i}=t;if(w()&&(null==e?void 0:e.enabled))return!0;if(!w()&&(null==i?void 0:i.enabled))return!0}return i===o||n},U=(e,t)=>{const i=t.adUnits,l=(e=>!!e.adTypes&&new W(e.adTypes).result)(t);return i.filter((e=>void 0!==e.dynamic&&e.dynamic.enabled)).map((i=>{const c=i.location.replace(/\s+/g,"_"),d="Sidebar"===c?0:2;return{auctionPriority:z.get(c)||8,location:c,sequence:b(i.sequence,1),sizes:(h=i.adSizes,B.filter((([e,t])=>h.some((([i,n])=>e===i&&t===n))))).filter((t=>((e,[t,i],n)=>{const{location:l,sequence:c}=e;if(l===o)return!("phone"===n&&320===t&&100===i);if(l===r)return!0;if(l===s)return!(w()&&"phone"===n&&(300===t&&390===i||320===t&&300===i));if(l===a){const t=e.adSizes.some((([,e])=>e<=300)),n=i>300;return!(!n||t)||9===c||(c&&c<=5?!n||e.sticky:!n)}return!0})(i,t,e))).concat(l&&i.location===n?F:[]),devices:i.devices,pageSelector:b(i.dynamic.pageSelector,"").trim(),elementSelector:b(i.dynamic.elementSelector,"").trim(),position:b(i.dynamic.position,"beforebegin"),max:Math.floor(b(i.dynamic.max,0)),spacing:b(i.dynamic.spacing,0),skip:Math.floor(b(i.dynamic.skip,0)),every:Math.max(Math.floor(b(i.dynamic.every,1)),1),classNames:i.dynamic.classNames||[],sticky:q(i,t.adOptions.stickyContainerConfig),stickyOverlapSelector:b(i.stickyOverlapSelector,"").trim(),autosize:i.autosize,special:b(i.targeting,[]).filter((e=>"special"===e.key)).reduce(((e,t)=>e.concat(...t.value)),[]),lazy:b(i.dynamic.lazy,!1),lazyMax:b(i.dynamic.lazyMax,d),lazyMaxDefaulted:0!==i.dynamic.lazyMax&&!i.dynamic.lazyMax,name:i.name};var h}))},Q=(e,t)=>{const i=(e=>{let t=e.clientWidth;if(getComputedStyle){const i=getComputedStyle(e,null);t-=parseFloat(i.paddingLeft||"0")+parseFloat(i.paddingRight||"0")}return t})(t),n=e.sticky&&e.location===a;return e.sizes.filter((t=>{const s=!e.autosize||(t[0]<=i||t[0]<=320),o=!n||t[1]<=window.innerHeight-100;return s&&o}))};class J{constructor(e){this.clsOptions=e,this.enabledLocations=[i,n,s,a]}}const K=e=>`adthrive-${e.location.replace("_","-").toLowerCase()}`,Z=e=>`${K(e)}-${e.sequence}`;function Y(e,t){void 0===t&&(t={});var i=t.insertAt;if(e&&"undefined"!=typeof document){var n=document.head||document.getElementsByTagName("head")[0],s=document.createElement("style");s.type="text/css","top"===i&&n.firstChild?n.insertBefore(s,n.firstChild):n.appendChild(s),s.styleSheet?s.styleSheet.cssText=e:s.appendChild(document.createTextNode(e))}}const X=e=>e.some((e=>null!==document.querySelector(e)));function ee(e,t,i,n){var s,o=arguments.length,r=o<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,i):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)r=Reflect.decorate(e,t,i,n);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(r=(o<3?s(r):o>3?s(t,i,r):s(t,i))||r);return o>3&&r&&Object.defineProperty(t,i,r),r}function te(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)}"function"==typeof SuppressedError&&SuppressedError;class ie extends V{static fromArray(e,t){return new ie(e.map((([e,t])=>({choice:e,weight:t}))),t)}addChoice(e,t){this._choices.push({choice:e,weight:t})}get(){const e=(t=0,i=100,Math.random()*(i-t)+t);var t,i;let n=0;for(const{choice:t,weight:i}of this._choices)if(n+=i,n>=e)return t;return this._default}get totalWeight(){return this._choices.reduce(((e,{weight:t})=>e+t),0)}constructor(e=[],t){super(),this._choices=e,this._default=t}}const ne={"Europe/Brussels":"gdpr","Europe/Sofia":"gdpr","Europe/Prague":"gdpr","Europe/Copenhagen":"gdpr","Europe/Berlin":"gdpr","Europe/Tallinn":"gdpr","Europe/Dublin":"gdpr","Europe/Athens":"gdpr","Europe/Madrid":"gdpr","Africa/Ceuta":"gdpr","Europe/Paris":"gdpr","Europe/Zagreb":"gdpr","Europe/Rome":"gdpr","Asia/Nicosia":"gdpr","Europe/Nicosia":"gdpr","Europe/Riga":"gdpr","Europe/Vilnius":"gdpr","Europe/Luxembourg":"gdpr","Europe/Budapest":"gdpr","Europe/Malta":"gdpr","Europe/Amsterdam":"gdpr","Europe/Vienna":"gdpr","Europe/Warsaw":"gdpr","Europe/Lisbon":"gdpr","Atlantic/Madeira":"gdpr","Europe/Bucharest":"gdpr","Europe/Ljubljana":"gdpr","Europe/Bratislava":"gdpr","Europe/Helsinki":"gdpr","Europe/Stockholm":"gdpr","Europe/London":"gdpr","Europe/Vaduz":"gdpr","Atlantic/Reykjavik":"gdpr","Europe/Oslo":"gdpr","Europe/Istanbul":"gdpr","Europe/Zurich":"gdpr"},se=()=>(e,i,n)=>{const s=n.value;s&&(n.value=function(...e){const i=(e=>{if(null===e)return null;const t=e.map((({choice:e})=>e));return(e=>{let t=5381,i=e.length;for(;i;)t=33*t^e.charCodeAt(--i);return t>>>0})(JSON.stringify(t)).toString(16)})(this._choices),n=this._expConfigABGroup?this._expConfigABGroup:this.abgroup,o=n?n.toLowerCase():this.key?this.key.toLowerCase():"",r=i?`${o}_${i}`:o,a=this.localStoragePrefix?`${this.localStoragePrefix}-${r}`:r;if([t.AdLayout,t.AdDensity].includes(o)&&"gdpr"===(()=>{const e=Intl.DateTimeFormat().resolvedOptions().timeZone,t=ne[e];return null!=t?t:null})()){return s.apply(this,e)}const l=P.readInternalLocalStorage("adthrive_branch");!1===(l&&l.enabled)&&P.deleteLocalStorage(a);const c=(()=>s.apply(this,e))(),d=(h=this._choices,u=c,null!=(m=null==(p=h.find((({choice:e})=>e===u)))?void 0:p.weight)?m:null);var h,u,p,m;const[g,y]=P.getOrSetABGroupLocalStorageValue(a,c,d,{value:24,unit:"hours"});return this._stickyResult=g,this._stickyWeight=y,g})};class oe{get enabled(){return void 0!==this.experimentConfig}_isValidResult(e,t=()=>!0){return t()&&(e=>null!=e&&!("number"==typeof e&&isNaN(e)))(e)}}class re extends oe{_isValidResult(e){return super._isValidResult(e,(()=>this._resultValidator(e)||"control"===e))}run(){if(!this.enabled)return v.error("CLSWeightedChoiceSiteExperiment","run","() => %o","No experiment config found. Defaulting to control."),"control";if(!this._mappedChoices||0===this._mappedChoices.length)return v.error("CLSWeightedChoiceSiteExperiment","run","() => %o","No experiment variants found. Defaulting to control."),"control";const e=new ie(this._mappedChoices).get();return this._isValidResult(e)?e:(v.error("CLSWeightedChoiceSiteExperiment","run","() => %o","Invalid result from experiment choices. Defaulting to control."),"control")}constructor(...e){super(...e),this._resultValidator=()=>!0}}class ae{getSiteExperimentByKey(e){const t=this.siteExperiments.filter((t=>t.key.toLowerCase()===e.toLowerCase()))[0],i=E("at_site_features"),n=(s=(null==t?void 0:t.variants[1])?null==t?void 0:t.variants[1].value:null==t?void 0:t.variants[0].value,o=i[e],typeof s==typeof o);var s,o;return t&&i[e]&&n&&(t.variants=[{displayName:"test",value:i[e],weight:100,id:0}]),t}constructor(e){var t,i;this.siteExperiments=[],this._clsOptions=e,this._device=w()?"mobile":"desktop",this.siteExperiments=null!=(i=null==(t=this._clsOptions.siteAds.siteExperiments)?void 0:t.filter((e=>{const t=e.key,i=M(e,this._device),n=k(this._clsOptions.siteAds,t,this._device);return i&&n})))?i:[]}}class le extends re{get result(){return this._result}run(){if(!this.enabled)return v.error("CLSAdLayoutSiteExperiment","run","() => %o","No experiment config found. Defaulting to empty class name."),"";const e=new ie(this._mappedChoices).get();return this._isValidResult(e)?e:(v.error("CLSAdLayoutSiteExperiment","run","() => %o","Invalid result from experiment choices. Defaulting to empty class name."),"")}_mapChoices(){return this._choices.map((({weight:e,value:t})=>({weight:e,choice:t})))}constructor(e){super(),this._choices=[],this._mappedChoices=[],this._result="",this._resultValidator=e=>"string"==typeof e,this.key=t.AdLayout,this.abgroup=t.AdLayout,this._clsSiteExperiments=new ae(e),this.experimentConfig=this._clsSiteExperiments.getSiteExperimentByKey(this.key),this.enabled&&this.experimentConfig&&(this._choices=this.experimentConfig.variants,this._mappedChoices=this._mapChoices(),this._result=this.run(),e.setWeightedChoiceExperiment(this.abgroup,this._result,!0))}}ee([se(),te("design:type",Function),te("design:paramtypes",[]),te("design:returntype",void 0)],le.prototype,"run",null);class ce extends re{get result(){return this._result}run(){if(!this.enabled)return v.error("CLSTargetAdDensitySiteExperiment","run","() => %o","No experiment config found. Defaulting to control."),"control";const e=new ie(this._mappedChoices).get();return this._isValidResult(e)?e:(v.error("CLSTargetAdDensitySiteExperiment","run","() => %o","Invalid result from experiment choices. Defaulting to control."),"control")}_mapChoices(){return this._choices.map((({weight:e,value:t})=>({weight:e,choice:"number"==typeof t?(t||0)/100:"control"})))}constructor(e){super(),this._choices=[],this._mappedChoices=[],this._result="control",this._resultValidator=e=>"number"==typeof e,this.key=t.AdDensity,this.abgroup=t.AdDensity,this._clsSiteExperiments=new ae(e),this.experimentConfig=this._clsSiteExperiments.getSiteExperimentByKey(this.key),this.enabled&&this.experimentConfig&&(this._choices=this.experimentConfig.variants,this._mappedChoices=this._mapChoices(),this._result=this.run(),e.setWeightedChoiceExperiment(this.abgroup,this._result,!0))}}ee([se(),te("design:type",Function),te("design:paramtypes",[]),te("design:returntype",void 0)],ce.prototype,"run",null);const de="250px";class he{start(){try{var e,t;(e=>{const t=document.body,i=`adthrive-device-${e}`;if(!t.classList.contains(i))try{t.classList.add(i)}catch(e){v.error("BodyDeviceClassComponent","init",{message:e.message});const t="classList"in document.createElement("_");v.error("BodyDeviceClassComponent","init.support",{support:t})}})(this._device);const s=new le(this._clsOptions);if(s.enabled){const e=s.result,t=e.startsWith(".")?e.substring(1):e;if((e=>/^[-_a-zA-Z]+[-_a-zA-Z0-9]*$/.test(e))(t))try{document.body.classList.add(t)}catch(e){v.error("ClsDynamicAdsInjector","start",`Uncaught CSS Class error: ${e}`)}else v.error("ClsDynamicAdsInjector","start",`Invalid class name: ${t}`)}const o=U(this._device,this._clsOptions.siteAds).filter((e=>this._locationEnabled(e))).filter((e=>{return t=e,i=this._device,t.devices.includes(i);var t,i})).filter((e=>{return 0===(t=e).pageSelector.length||null!==document.querySelector(t.pageSelector);var t})),r=this.inject(o);var i,n;if(null==(t=this._clsOptions.siteAds.adOptions.stickyContainerConfig)||null==(e=t.content)?void 0:e.enabled)if(!X(this._clsOptions.siteAds.adOptions.stickyContainerConfig.blockedSelectors||[]))Y(`\n .adthrive-device-phone .adthrive-sticky-content {\n height: 450px !important;\n margin-bottom: 100px !important;\n }\n .adthrive-content.adthrive-sticky {\n position: -webkit-sticky;\n position: sticky !important;\n top: 42px !important;\n margin-top: 42px !important;\n }\n .adthrive-content.adthrive-sticky:after {\n content: "— Advertisement. Scroll down to continue. —";\n font-size: 10pt;\n margin-top: 5px;\n margin-bottom: 5px;\n display:block;\n color: #888;\n }\n .adthrive-sticky-container {\n position: relative;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n min-height:${(null==(n=this._clsOptions.siteAds.adOptions.stickyContainerConfig)||null==(i=n.content)?void 0:i.minHeight)||400}px !important;\n margin: 10px 0 10px 0;\n background-color: #FAFAFA;\n padding-bottom:0px;\n }\n `);r.forEach((e=>this._clsOptions.setInjectedSlots(e)))}catch(e){v.error("ClsDynamicAdsInjector","start",e)}}inject(e,t=document){this._densityDevice="desktop"===this._device?l:c,this._overrideDefaultAdDensitySettingsWithSiteExperiment();const i=this._clsOptions.siteAds,s=b(i.adDensityEnabled,!0),o=i.adDensityLayout&&s,r=e.filter((e=>o?e.location!==n:e)),a=e.filter((e=>o?e.location===n:null));return[...r.length?this._injectNonDensitySlots(r,t):[],...a.length?this._injectDensitySlots(a,t):[]]}_injectNonDensitySlots(e,t=document){var i;const n=[],o=[];if(e.some((e=>e.location===s&&e.sticky))&&!X((null==(i=this._clsOptions.siteAds.adOptions.stickyContainerConfig)?void 0:i.blockedSelectors)||[])){var r,a;const e=this._clsOptions.siteAds.adOptions.stickyContainerConfig;(e=>{Y(`\n .adthrive-recipe.adthrive-sticky {\n position: -webkit-sticky;\n position: sticky !important;\n top: 42px !important;\n margin-top: 42px !important;\n }\n .adthrive-recipe-sticky-container {\n position: relative;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n min-height:${e||400}px !important;\n margin: 10px 0 10px 0;\n background-color: #FAFAFA;\n padding-bottom:0px;\n }\n `)})("phone"===this._device?null==e||null==(r=e.recipeMobile)?void 0:r.minHeight:null==e||null==(a=e.recipeDesktop)?void 0:a.minHeight)}for(const i of e)this._insertNonDensityAds(i,n,o,t);return o.forEach((({location:e,element:t})=>{t.style.minHeight=this.locationToMinHeight[e]})),n}_injectDensitySlots(e,t=document){try{this._calculateMainContentHeightAndAllElements(e,t)}catch(e){return[]}const{onePerViewport:i,targetAll:n,targetDensityUnits:s,combinedMax:o,numberOfUnits:r}=this._getDensitySettings(e,t);return this._absoluteMinimumSpacingByDevice=i?window.innerHeight:this._absoluteMinimumSpacingByDevice,r?(this._adInjectionMap.filterUsed(),this._findElementsForAds(r,i,n,o,s,t),this._insertAds()):[]}_overrideDefaultAdDensitySettingsWithSiteExperiment(){var e;if(null==(e=this._clsTargetAdDensitySiteExperiment)?void 0:e.enabled){const e=this._clsTargetAdDensitySiteExperiment.result;"number"==typeof e&&(this._clsOptions.siteAds.adDensityEnabled=!0,this._clsOptions.siteAds.adDensityLayout[this._densityDevice].adDensity=e)}}_getDensitySettings(e,t=document){const i=this._clsOptions.siteAds.adDensityLayout,n=this._determineOverrides(i.pageOverrides),s=n.length?n[0]:i[this._densityDevice],o=this._clsOptions.getTargetDensity(s.adDensity),r=s.onePerViewport,a=this._shouldTargetAllEligible(o);let l=this._getTargetDensityUnits(o,a);const c=this._clsOptions.getWeightedChoiceExperiment("iosad");l<1&&c&&(l=1);const d=this._getCombinedMax(e,t),h=Math.min(this._totalAvailableElements.length,l,...d>0?[d]:[]);return this._pubLog={onePerViewport:r,targetDensity:o,targetDensityUnits:l,combinedMax:d},{onePerViewport:r,targetAll:a,targetDensityUnits:l,combinedMax:d,numberOfUnits:h}}_determineOverrides(e){return e.filter((e=>{const t=I(e.pageSelector);return""===e.pageSelector||t.elements&&t.elements.length})).map((e=>e[this._densityDevice]))}_shouldTargetAllEligible(e){return e===this._densityMax}_getTargetDensityUnits(e,t){return t?this._totalAvailableElements.length:Math.floor(e*this._mainContentHeight/(1-e)/this._minDivHeight)-this._recipeCount}_getCombinedMax(e,t=document){return b(e.filter((e=>{let i;try{i=t.querySelector(e.elementSelector)}catch(e){}return i})).map((e=>Number(e.max)+Number(e.lazyMaxDefaulted?0:e.lazyMax))).sort(((e,t)=>t-e))[0],0)}_elementLargerThanMainContent(e){return e.offsetHeight>=this._mainContentHeight&&this._totalAvailableElements.length>1}_elementDisplayNone(e){const t=window.getComputedStyle(e,null).display;return t&&"none"===t||"none"===e.style.display}_isBelowMaxes(e,t){return this._adInjectionMap.map.length<e&&this._adInjectionMap.map.length<t}_findElementsForAds(e,t,i,n,s,o=document){this._clsOptions.targetDensityLog={onePerViewport:t,combinedMax:n,targetDensityUnits:s,targetDensityPercentage:this._pubLog.targetDensity,mainContentHeight:this._mainContentHeight,recipeCount:this._recipeCount,numberOfEls:this._totalAvailableElements.length};const r=e=>{for(const{dynamicAd:t,element:r}of this._totalAvailableElements)if(this._logDensityInfo(r,t.elementSelector,e),!(!i&&this._elementLargerThanMainContent(r)||this._elementDisplayNone(r))){if(!this._isBelowMaxes(n,s))break;this._checkElementSpacing({dynamicAd:t,element:r,insertEvery:e,targetAll:i,target:o})}!this._usedAbsoluteMinimum&&this._smallerIncrementAttempts<5&&(++this._smallerIncrementAttempts,r(this._getSmallerIncrement(e)))},a=this._getInsertEvery(e,t,s);r(a)}_getSmallerIncrement(e){let t=.6*e;return t<=this._absoluteMinimumSpacingByDevice&&(t=this._absoluteMinimumSpacingByDevice,this._usedAbsoluteMinimum=!0),t}_insertNonDensityAds(e,t,i,n=document){let o=0,r=0,l=0;e.spacing>0&&(o=window.innerHeight*e.spacing,r=o);const c=this._repeatDynamicAds(e),d=this.getElements(e.elementSelector,n);e.skip;for(let h=e.skip;h<d.length&&!(l+1>c.length);h+=e.every){let u=d[h];if(o>0){const{bottom:e}=S(u);if(e<=r)continue;r=e+o}const p=c[l],m=`${p.location}_${p.sequence}`;t.some((e=>e.name===m))&&(l+=1);const g=this.getDynamicElementId(p),y=K(e),_=Z(e),f=[e.location===a&&e.sticky&&e.sequence&&e.sequence<=5?"adthrive-sticky-sidebar":"",e.location===s&&e.sticky?"adthrive-recipe-sticky-container":"",y,_,...e.classNames],v=this.addAd(u,g,e.position,f);if(v){const o=Q(p,v);if(o.length){const r={clsDynamicAd:e,dynamicAd:p,element:v,sizes:o,name:m,infinite:n!==document};t.push(r),i.push({location:p.location,element:v}),e.location===s&&++this._recipeCount,l+=1}u=v}}}_insertAds(){const e=[];return this._adInjectionMap.filterUsed(),this._adInjectionMap.map.forEach((({el:t,dynamicAd:i,target:n},s)=>{const o=Number(i.sequence)+s,r=i.max,a=i.lazy&&o>r;i.sequence=o,i.lazy=a;const l=this._addContentAd(t,i,n);l&&(i.used=!0,e.push(l))})),e}_getInsertEvery(e,t,i){let n=this._absoluteMinimumSpacingByDevice;return this._moreAvailableElementsThanUnitsToInject(i,e)?(this._usedAbsoluteMinimum=!1,n=this._useWiderSpacing(i,e)):(this._usedAbsoluteMinimum=!0,n=this._useSmallestSpacing(t)),t&&window.innerHeight>n?window.innerHeight:n}_useWiderSpacing(e,t){return this._mainContentHeight/Math.min(e,t)}_useSmallestSpacing(e){return e&&window.innerHeight>this._absoluteMinimumSpacingByDevice?window.innerHeight:this._absoluteMinimumSpacingByDevice}_moreAvailableElementsThanUnitsToInject(e,t){return this._totalAvailableElements.length>e||this._totalAvailableElements.length>t}_logDensityInfo(e,t,i){const{onePerViewport:n,targetDensity:s,targetDensityUnits:o,combinedMax:r}=this._pubLog;this._totalAvailableElements.length}_checkElementSpacing({dynamicAd:t,element:i,insertEvery:n,targetAll:s,target:o=document}){(this._isFirstAdInjected()||this._hasProperSpacing(i,t,s,n))&&this._markSpotForContentAd(i,e({},t),o)}_isFirstAdInjected(){return!this._adInjectionMap.map.length}_markSpotForContentAd(e,t,i=document){const n="beforebegin"===t.position||"afterbegin"===t.position;this._adInjectionMap.add(e,this._getElementCoords(e,n),t,i),this._adInjectionMap.sort()}_hasProperSpacing(e,t,n,s){const o="beforebegin"===t.position||"afterbegin"===t.position,r="beforeend"===t.position||"afterbegin"===t.position,a=n||this._isElementFarEnoughFromOtherAdElements(e,s,o),l=r||this._isElementNotInRow(e,o),c=-1===e.id.indexOf(`AdThrive_${i}`);return a&&l&&c}_isElementFarEnoughFromOtherAdElements(e,t,i){const n=this._getElementCoords(e,i);let s=!1;for(let e=0;e<this._adInjectionMap.map.length;e++){const i=this._adInjectionMap.map[e].coords,o=this._adInjectionMap.map[e+1]&&this._adInjectionMap.map[e+1].coords;if(s=n-t>i&&(!o||n+t<o),s)break}return s}_isElementNotInRow(e,t){const i=e.previousElementSibling,n=e.nextElementSibling,s=t?!i&&n||i&&e.tagName!==i.tagName?n:i:n;return!(!s||0!==e.getBoundingClientRect().height)||(!s||e.getBoundingClientRect().top!==s.getBoundingClientRect().top)}_calculateMainContentHeightAndAllElements(e,t=document){const[i,n]=((e,t,i=document)=>{const[n,s]=A(e,t,i);if(0===n.length)throw Error("No Main Content Elements Found");return[Array.from(n).reduce(((e,t)=>t.offsetHeight>e.offsetHeight?t:e))||document.body,s]})(e,this._adInjectionMap,t);this._mainContentDiv=i,this._totalAvailableElements=n,this._mainContentHeight=((e,t="div #comments, section .comments")=>{const i=e.querySelector(t);return i?e.offsetHeight-i.offsetHeight:e.offsetHeight})(this._mainContentDiv)}_getElementCoords(e,t=!1){const i=e.getBoundingClientRect();return(t?i.top:i.bottom)+window.scrollY}_addContentAd(e,t,i=document){var n,s;let o=null;const r=K(t),a=Z(t),l=(null==(s=this._clsOptions.siteAds.adOptions.stickyContainerConfig)||null==(n=s.content)?void 0:n.enabled)?"adthrive-sticky-container":"",c=this.addAd(e,this.getDynamicElementId(t),t.position,[l,r,a,...t.classNames]);if(c){const e=Q(t,c);if(e.length){c.style.minHeight=this.locationToMinHeight[t.location];o={clsDynamicAd:t,dynamicAd:t,element:c,sizes:e,name:`${t.location}_${t.sequence}`,infinite:i!==document}}}return o}getDynamicElementId(e){return`AdThrive_${e.location}_${e.sequence}_${this._device}`}getElements(e,t=document){return t.querySelectorAll(e)}addAd(e,t,i,n=[]){if(!document.getElementById(t)){const s=`<div id="${t}" class="adthrive-ad ${n.join(" ")}"></div>`;e.insertAdjacentHTML(i,s)}return document.getElementById(t)}_repeatDynamicAds(t){const i=[],n=t.location===s?99:this.locationMaxLazySequence.get(t.location),o=t.lazy?b(n,0):0,r=t.max,a=t.lazyMax,l=0===o&&t.lazy?r+a:Math.min(Math.max(o-t.sequence+1,0),r+a),c=Math.max(r,l);for(let n=0;n<c;n++){const s=Number(t.sequence)+n;if("Recipe_1"!==t.name||5!==s){const o=t.lazy&&n>=r;i.push(e({},t,{sequence:s,lazy:o}))}}return i}_locationEnabled(e){const t=this._clsOptions.enabledLocations.includes(e.location),i=this._clsOptions.disableAds&&this._clsOptions.disableAds.all||document.body.classList.contains("adthrive-disable-all"),n=!document.body.classList.contains("adthrive-disable-content")&&!this._clsOptions.disableAds.reasons.has("content_plugin");return t&&!i&&n}constructor(e,t){this._clsOptions=e,this._adInjectionMap=t,this._recipeCount=0,this._mainContentHeight=0,this._mainContentDiv=null,this._totalAvailableElements=[],this._minDivHeight=250,this._densityDevice=l,this._pubLog={onePerViewport:!1,targetDensity:0,targetDensityUnits:0,combinedMax:0},this._densityMax=.99,this._smallerIncrementAttempts=0,this._absoluteMinimumSpacingByDevice=250,this._usedAbsoluteMinimum=!1,this._infPageEndOffset=0,this.locationMaxLazySequence=new Map([[s,5]]),this.locationToMinHeight={Below_Post:de,Content:de,Recipe:de,Sidebar:de};const{tablet:i,desktop:n}=this._clsOptions.siteAds.breakpoints;this._device=((e,t)=>{const i=window.innerWidth;return i>=t?"desktop":i>=e?"tablet":"phone"})(i,n),this._config=new J(e),this._clsOptions.enabledLocations=this._config.enabledLocations,this._clsTargetAdDensitySiteExperiment=this._clsOptions.siteAds.siteExperiments?new ce(this._clsOptions):null}}function ue(e,t){if(null==e)return{};var i,n,s={},o=Object.keys(e);for(n=0;n<o.length;n++)i=o[n],t.indexOf(i)>=0||(s[i]=e[i]);return s}class pe{get enabled(){return!0}}class me extends pe{setPotentialPlayersMap(){const e=this._videoConfig.players||[],t=this._filterPlayerMap(),i=e.filter((e=>"stationaryRelated"===e.type&&e.enabled));return t.stationaryRelated=i,this._potentialPlayerMap=t,this._potentialPlayerMap}_filterPlayerMap(){const e=this._videoConfig.players,t={stickyRelated:[],stickyPlaylist:[],stationaryRelated:[]};return e&&e.length?e.filter((e=>{var t;return null==(t=e.devices)?void 0:t.includes(this._device)})).reduce(((e,t)=>(e[t.type]||(v.event(this._component,"constructor","Unknown Video Player Type detected",t.type),e[t.type]=[]),t.enabled&&e[t.type].push(t),e)),t):t}_checkPlayerSelectorOnPage(e){const t=this._potentialPlayerMap[e].map((e=>({player:e,playerElement:this._getPlacementElement(e)})));return t.length?t[0]:{player:null,playerElement:null}}_getOverrideElement(e,t,i){if(e&&t){const n=document.createElement("div");t.insertAdjacentElement(e.position,n),i=n}else{const{player:e,playerElement:t}=this._checkPlayerSelectorOnPage("stickyPlaylist");if(e&&t){const n=document.createElement("div");t.insertAdjacentElement(e.position,n),i=n}}return i}_shouldOverrideElement(e){const t=e.getAttribute("override-embed");return"true"===t||"false"===t?"true"===t:!!this._videoConfig.relatedSettings&&this._videoConfig.relatedSettings.overrideEmbedLocation}_checkPageSelector(e,t,i=[]){if(e&&t&&0===i.length){return!("/"===window.location.pathname)&&v.event("VideoUtils","getPlacementElement",new Error(`PSNF: ${e} does not exist on the page`)),!1}return!0}_getElementSelector(e,t,i){return t&&t.length>i?t[i]:(v.event("VideoUtils","getPlacementElement",new Error(`ESNF: ${e} does not exist on the page`)),null)}_getPlacementElement(e){const{pageSelector:t,elementSelector:i,skip:n}=e,s=I(t),{valid:o,elements:r}=s,a=ue(s,["valid","elements"]),l=O(i),{valid:c,elements:d}=l,h=ue(l,["valid","elements"]);if(""!==t&&!o)return v.error("VideoUtils","getPlacementElement",new Error(`${t} is not a valid selector`),a),null;if(!c)return v.error("VideoUtils","getPlacementElement",new Error(`${i} is not a valid selector`),h),null;if(!this._checkPageSelector(t,o,r))return null;return this._getElementSelector(i,d,n)||null}_getEmbeddedPlayerType(e){let t=e.getAttribute("data-player-type");return t&&"default"!==t||(t=this._videoConfig.relatedSettings?this._videoConfig.relatedSettings.defaultPlayerType:"static"),this._stickyRelatedOnPage&&(t="static"),t}_getMediaId(e){const t=e.getAttribute("data-video-id");return!!t&&(this._relatedMediaIds.push(t),t)}_createRelatedPlayer(e,t,i,n){"collapse"===t?this._createCollapsePlayer(e,i):"static"===t&&this._createStaticPlayer(e,i,n)}_createCollapsePlayer(t,i){const{player:n,playerElement:s}=this._checkPlayerSelectorOnPage("stickyRelated"),o=n||this._potentialPlayerMap.stationaryRelated[0];if(o&&o.playerId){this._shouldOverrideElement(i)&&(i=this._getOverrideElement(n,s,i)),i=document.querySelector(`#cls-video-container-${t} > div`)||i,this._createStickyRelatedPlayer(e({},o,{mediaId:t}),i)}else v.error(this._component,"_createCollapsePlayer","No video player found")}_createStaticPlayer(t,i,n){if(this._potentialPlayerMap.stationaryRelated.length&&this._potentialPlayerMap.stationaryRelated[0].playerId){const s=this._potentialPlayerMap.stationaryRelated[0];this._createStationaryRelatedPlayer(e({},s,{mediaOrPlaylistId:t}),i,n)}else v.error(this._component,"_createStaticPlayer","No video player found")}_shouldRunAutoplayPlayers(){return!(!this._isVideoAllowedOnPage()||!this._potentialPlayerMap.stickyRelated.length&&!this._potentialPlayerMap.stickyPlaylist.length)}_setPlaylistMediaIdWhenStationaryOnPage(t,i){if(this._potentialPlayerMap.stationaryRelated.length&&this._potentialPlayerMap.stationaryRelated[0].playerId&&t&&t.length){const n=t[0].getAttribute("data-video-id");return n?e({},i,{mediaId:n}):i}return i}_determineAutoplayPlayers(e){const t=this._component,i="VideoManagerComponent"===t,n=this._context;if(this._stickyRelatedOnPage)return void v.event(t,"stickyRelatedOnPage",i&&{device:n&&n.device,isDesktop:this._device}||{});const{playerElement:s}=this._checkPlayerSelectorOnPage("stickyPlaylist");let{player:o}=this._checkPlayerSelectorOnPage("stickyPlaylist");o&&o.playerId&&s?(o=this._setPlaylistMediaIdWhenStationaryOnPage(e,o),this._createPlaylistPlayer(o,s)):Math.random()<.01&&setTimeout((()=>{v.event(t,"noStickyPlaylist",i&&{vendor:"none",device:n&&n.device,isDesktop:this._device}||{})}),1e3)}_initializeRelatedPlayers(e){const t=new Map;for(let i=0;i<e.length;i++){const n=e[i],s=n.offsetParent,o=this._getEmbeddedPlayerType(n),r=this._getMediaId(n);if(s&&r){const e=(t.get(r)||0)+1;t.set(r,e),this._createRelatedPlayer(r,o,n,e)}}}constructor(e,t,i){super(),this._videoConfig=e,this._component=t,this._context=i,this._stickyRelatedOnPage=!1,this._relatedMediaIds=[],this._device=x()?"desktop":"mobile",this._potentialPlayerMap=this.setPotentialPlayersMap()}}class ge extends me{init(){this._initializePlayers()}_wrapVideoPlayerWithCLS(e,t,i=0){if(e.parentNode){const n=e.offsetWidth*(9/16),s=this._createGenericCLSWrapper(n,t,i);return e.parentNode.insertBefore(s,e),s.appendChild(e),s}return null}_createGenericCLSWrapper(e,t,i){const n=document.createElement("div");return n.id=`cls-video-container-${t}`,n.className="adthrive",n.style.minHeight=`${e+i}px`,n}_getTitleHeight(){const e=document.createElement("h3");e.style.margin="10px 0",e.innerText="Title",e.style.visibility="hidden",document.body.appendChild(e);const t=window.getComputedStyle(e),i=parseInt(t.height,10),n=parseInt(t.marginTop,10),s=parseInt(t.marginBottom,10);return document.body.removeChild(e),Math.min(i+s+n,50)}_initializePlayers(){const e=document.querySelectorAll(this._IN_POST_SELECTOR);e.length&&this._initializeRelatedPlayers(e),this._shouldRunAutoplayPlayers()&&this._determineAutoplayPlayers(e)}_createStationaryRelatedPlayer(e,t,i){const n="mobile"===this._device?[400,225]:[640,360],s=p;if(t&&e.mediaOrPlaylistId){const o=`${e.mediaOrPlaylistId}_${i}`,r=this._wrapVideoPlayerWithCLS(t,o);this._playersAddedFromPlugin.push(e.mediaOrPlaylistId),r&&this._clsOptions.setInjectedVideoSlots({playerId:e.playerId,playerName:s,playerSize:n,element:r,type:"stationaryRelated"})}}_createStickyRelatedPlayer(e,t){const i="mobile"===this._device?[400,225]:[640,360],n=h;if(this._stickyRelatedOnPage=!0,this._videoConfig.mobileStickyPlayerOnPage="mobile"===this._device,t&&e.position&&e.mediaId){const s=document.createElement("div");t.insertAdjacentElement(e.position,s);const o=this._getTitleHeight(),r=this._wrapVideoPlayerWithCLS(s,e.mediaId,this._WRAPPER_BAR_HEIGHT+o);this._playersAddedFromPlugin.push(e.mediaId),r&&this._clsOptions.setInjectedVideoSlots({playlistId:e.playlistId,playerId:e.playerId,playerSize:i,playerName:n,element:s,type:"stickyRelated"})}}_createPlaylistPlayer(e,t){const i=e.playlistId,n="mobile"===this._device?u:d,s="mobile"===this._device?[400,225]:[640,360];this._videoConfig.mobileStickyPlayerOnPage=!0;const o=document.createElement("div");t.insertAdjacentElement(e.position,o);let r=this._WRAPPER_BAR_HEIGHT;e.title&&(r+=this._getTitleHeight());const a=this._wrapVideoPlayerWithCLS(o,i,r);this._playersAddedFromPlugin.push(`playlist-${i}`),a&&this._clsOptions.setInjectedVideoSlots({playlistId:e.playlistId,playerId:e.playerId,playerSize:s,playerName:n,element:o,type:"stickyPlaylist"})}_isVideoAllowedOnPage(){const e=this._clsOptions.disableAds;if(e&&e.video){let t="";e.reasons.has("video_tag")?t="video tag":e.reasons.has("video_plugin")?t="video plugin":e.reasons.has("video_page")&&(t="command queue");const i=t?"ClsVideoInsertionMigrated":"ClsVideoInsertion";return v.error(i,"isVideoAllowedOnPage",new Error(`DBP: Disabled by publisher via ${t||"other"}`)),!1}return!this._clsOptions.videoDisabledFromPlugin}constructor(e,t){super(e,"ClsVideoInsertion"),this._videoConfig=e,this._clsOptions=t,this._IN_POST_SELECTOR=".adthrive-video-player",this._WRAPPER_BAR_HEIGHT=36,this._playersAddedFromPlugin=[],t.removeVideoTitleWrapper&&(this._WRAPPER_BAR_HEIGHT=0)}}class ye{add(e,t,i,n=document){this._map.push({el:e,coords:t,dynamicAd:i,target:n})}get map(){return this._map}sort(){this._map.sort((({coords:e},{coords:t})=>e-t))}filterUsed(){this._map=this._map.filter((({dynamicAd:e})=>!e.used))}reset(){this._map=[]}constructor(){this._map=[]}}class _e extends ye{}const fe=e=>{const t=f(),i=(()=>{const e=w()?"mobile":"tablet";return x(g)?"desktop":e})(),n=e.siteAdsProfiles;let s=null;if(n&&n.length)for(const e of n){const n=e.targeting.device,o=e.targeting.browserEngine,r=n&&n.length&&n.includes(i),a=o&&o.length&&o.includes(t);r&&a&&(s=e)}return s};try{(()=>{const e=new R;e&&e.enabled&&(e.siteAds&&(e=>{const t=fe(e);if(t){const e=t.profileId;document.body.classList.add(`raptive-profile-${e}`)}})(e.siteAds),new he(e,new _e).start(),new ge(new H(e),e).init())})()}catch(e){v.error("CLS","pluginsertion-iife",e),window.adthriveCLS&&(window.adthriveCLS.injectedFromPlugin=!1)}}();
</script><script data-no-optimize="1" data-cfasync="false">(function () {var clsElements = document.querySelectorAll("script[id^='cls-']"); window.adthriveCLS && clsElements && clsElements.length === 0 ? window.adthriveCLS.injectedFromPlugin = false : ""; })();</script><div id="mv-grow-data" data-settings='{"floatingSidebar":{"stopSelector":false},"general":{"contentSelector":false,"show_count":{"content":false,"sidebar":false,"pop_up":false,"sticky_bar":false},"isTrellis":false,"license_last4":"3ec2"},"post":{"ID":42866,"categories":[{"ID":24912},{"ID":24909},{"ID":17979},{"ID":24915},{"ID":2}]},"shareCounts":{"facebook":0,"pinterest":59,"reddit":0,"twitter":0},"shouldRun":true,"buttonSVG":{"share":{"height":32,"width":26,"paths":["M20.8 20.8q1.984 0 3.392 1.376t1.408 3.424q0 1.984-1.408 3.392t-3.392 1.408-3.392-1.408-1.408-3.392q0-0.192 0.032-0.448t0.032-0.384l-8.32-4.992q-1.344 1.024-2.944 1.024-1.984 0-3.392-1.408t-1.408-3.392 1.408-3.392 3.392-1.408q1.728 0 2.944 0.96l8.32-4.992q0-0.128-0.032-0.384t-0.032-0.384q0-1.984 1.408-3.392t3.392-1.408 3.392 1.376 1.408 3.424q0 1.984-1.408 3.392t-3.392 1.408q-1.664 0-2.88-1.024l-8.384 4.992q0.064 0.256 0.064 0.832 0 0.512-0.064 0.768l8.384 4.992q1.152-0.96 2.88-0.96z"]},"facebook":{"height":32,"width":18,"paths":["M17.12 0.224v4.704h-2.784q-1.536 0-2.080 0.64t-0.544 1.92v3.392h5.248l-0.704 5.28h-4.544v13.568h-5.472v-13.568h-4.544v-5.28h4.544v-3.904q0-3.328 1.856-5.152t4.96-1.824q2.624 0 4.064 0.224z"]},"twitter":{"height":30,"width":32,"paths":["M30.3 29.7L18.5 12.4l0 0L29.2 0h-3.6l-8.7 10.1L10 0H0.6l11.1 16.1l0 0L0 29.7h3.6l9.7-11.2L21 29.7H30.3z M8.6 2.7 L25.2 27h-2.8L5.7 2.7H8.6z"]},"pinterest":{"height":32,"width":23,"paths":["M0 10.656q0-1.92 0.672-3.616t1.856-2.976 2.72-2.208 3.296-1.408 3.616-0.448q2.816 0 5.248 1.184t3.936 3.456 1.504 5.12q0 1.728-0.32 3.36t-1.088 3.168-1.792 2.656-2.56 1.856-3.392 0.672q-1.216 0-2.4-0.576t-1.728-1.568q-0.16 0.704-0.48 2.016t-0.448 1.696-0.352 1.28-0.48 1.248-0.544 1.12-0.832 1.408-1.12 1.536l-0.224 0.096-0.16-0.192q-0.288-2.816-0.288-3.36 0-1.632 0.384-3.68t1.184-5.152 0.928-3.616q-0.576-1.152-0.576-3.008 0-1.504 0.928-2.784t2.368-1.312q1.088 0 1.696 0.736t0.608 1.824q0 1.184-0.768 3.392t-0.8 3.36q0 1.12 0.8 1.856t1.952 0.736q0.992 0 1.824-0.448t1.408-1.216 0.992-1.696 0.672-1.952 0.352-1.984 0.128-1.792q0-3.072-1.952-4.8t-5.12-1.728q-3.552 0-5.952 2.304t-2.4 5.856q0 0.8 0.224 1.536t0.48 1.152 0.48 0.832 0.224 0.544q0 0.48-0.256 1.28t-0.672 0.8q-0.032 0-0.288-0.032-0.928-0.288-1.632-0.992t-1.088-1.696-0.576-1.92-0.192-1.92z"]},"bluesky":{"height":28,"width":32,"paths":["M6.9,1.9c3.7,2.8,7.6,8.3,9.1,11.3,1.4-3,5.4-8.6,9.1-11.3,2.6-2,6.9-3.5,6.9,1.4s-.6,8.2-.9,9.4c-1.1,4.1-5.3,5.1-9,4.5,6.5,1.1,8.1,4.7,4.6,8.4-6.8,6.9-9.7-1.7-10.5-4-.1-.4-.2-.6-.2-.4,0-.2,0,0-.2.4-.8,2.2-3.7,10.9-10.5,4-3.6-3.6-1.9-7.3,4.6-8.4-3.7.6-7.9-.4-9-4.5C.6,11.5,0,4.3,0,3.3,0-1.6,4.3-.1,6.9,1.9Z"]}},"saveThis":{"spotlight":"","successMessage":"","consent":"","consentForMailingList":"","position":"","mailingListService":""},"utmParams":[],"pinterest":{"pinDescriptionSource":"image_alt_tag","pinDescription":"Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro.","pinTitle":"Grilled Tacos al Pastor","pinImageURL":"https:\/\/howtofeedaloon.com\/wp-content\/uploads\/2025\/05\/Tacos-al-Pastor-1.jpeg","pinnableImages":"all_images","postImageHidden":null,"postImageHiddenMultiple":"yes","lazyLoadCompatibility":"yes","buttonPosition":"","buttonShape":null,"showButtonLabel":null,"buttonLabelText":null,"buttonShareBehavior":"post_image","hoverButtonShareBehavior":null,"minimumImageWidth":null,"minimumImageHeight":null,"showImageOverlay":null,"alwaysShowMobile":null,"alwaysShowDesktop":null,"postTypeDisplay":null,"imagePinIt":"0","hasContent":"1","shareURL":"https:\/\/howtofeedaloon.com\/grilled-tacos-al-pastor\/","bypassClasses":["mv-grow-bypass","no_pin"],"bypassDenyClasses":["dpsp-post-pinterest-image-hidden-inner","mv-create-pinterest"],"ignoreSelectors":[],"hoverButtonIgnoreClasses":["lazyloaded","lazyload","lazy","loading","loaded","td-animation-stack","ezlazyloaded","penci-lazy","ut-lazy","ut-image-loaded","ut-animated-image","skip-lazy"],"disableIframes":null},"inlineContentHook":["genesis_after_header","loop_start"]}'></div><aside id="dpsp-floating-sidebar" aria-label="social sharing sidebar" class="dpsp-shape-rounded dpsp-size-small dpsp-hide-on-mobile dpsp-position-left dpsp-button-style-1 dpsp-no-animation" data-trigger-scroll="false">
<div class="dpsp-total-share-wrapper">
<span class="dpsp-icon-total-share"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 26 32"><path d="M20.8 20.8q1.984 0 3.392 1.376t1.408 3.424q0 1.984-1.408 3.392t-3.392 1.408-3.392-1.408-1.408-3.392q0-0.192 0.032-0.448t0.032-0.384l-8.32-4.992q-1.344 1.024-2.944 1.024-1.984 0-3.392-1.408t-1.408-3.392 1.408-3.392 3.392-1.408q1.728 0 2.944 0.96l8.32-4.992q0-0.128-0.032-0.384t-0.032-0.384q0-1.984 1.408-3.392t3.392-1.408 3.392 1.376 1.408 3.424q0 1.984-1.408 3.392t-3.392 1.408q-1.664 0-2.88-1.024l-8.384 4.992q0.064 0.256 0.064 0.832 0 0.512-0.064 0.768l8.384 4.992q1.152-0.96 2.88-0.96z"></path></svg></span>
<span class="dpsp-total-share-count">59</span>
<span>shares</span>
</div>
<ul class="dpsp-networks-btns-wrapper dpsp-networks-btns-share dpsp-networks-btns-sidebar dpsp-has-button-icon-animation">
<li class="dpsp-network-list-item dpsp-network-list-item-facebook">
<a rel="nofollow noopener" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F&t=Grilled%20Tacos%20al%20Pastor" class="dpsp-network-btn dpsp-facebook dpsp-no-label dpsp-first dpsp-has-label-mobile" target="_blank" aria-label="Share on Facebook" title="Share on Facebook" data-wpel-link="external"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 18 32"><path d="M17.12 0.224v4.704h-2.784q-1.536 0-2.080 0.64t-0.544 1.92v3.392h5.248l-0.704 5.28h-4.544v13.568h-5.472v-13.568h-4.544v-5.28h4.544v-3.904q0-3.328 1.856-5.152t4.96-1.824q2.624 0 4.064 0.224z"></path></svg></span></span>
</a></li>
<li class="dpsp-network-list-item dpsp-network-list-item-x">
<a rel="nofollow noopener" href="https://x.com/intent/tweet?text=Grilled%20Tacos%20al%20Pastor&url=https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F" class="dpsp-network-btn dpsp-x dpsp-no-label dpsp-has-label-mobile" target="_blank" aria-label="Share on X" title="Share on X" data-wpel-link="external"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 30"><path d="M30.3 29.7L18.5 12.4l0 0L29.2 0h-3.6l-8.7 10.1L10 0H0.6l11.1 16.1l0 0L0 29.7h3.6l9.7-11.2L21 29.7H30.3z M8.6 2.7 L25.2 27h-2.8L5.7 2.7H8.6z"></path></svg></span></span>
</a></li>
<li class="dpsp-network-list-item dpsp-network-list-item-pinterest">
<button data-href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F&media=https%3A%2F%2Fhowtofeedaloon.com%2Fwp-content%2Fuploads%2F2025%2F05%2FTacos-al-Pastor-1.jpeg&description=Grilled%20Tacos%20al%20Pastor%20Grilled%20feature%20succulent%2C%20marinated%20pork%20grilled%20to%20perfection%2C%20served%20in%20warm%20corn%20tortillas%20and%20topped%20with%20fresh%20pineapple%2C%20onions%2C%20and%20cilantro.%20" class="dpsp-network-btn dpsp-pinterest dpsp-no-label dpsp-has-label-mobile" aria-label="Save to Pinterest" title="Save to Pinterest"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 23 32"><path d="M0 10.656q0-1.92 0.672-3.616t1.856-2.976 2.72-2.208 3.296-1.408 3.616-0.448q2.816 0 5.248 1.184t3.936 3.456 1.504 5.12q0 1.728-0.32 3.36t-1.088 3.168-1.792 2.656-2.56 1.856-3.392 0.672q-1.216 0-2.4-0.576t-1.728-1.568q-0.16 0.704-0.48 2.016t-0.448 1.696-0.352 1.28-0.48 1.248-0.544 1.12-0.832 1.408-1.12 1.536l-0.224 0.096-0.16-0.192q-0.288-2.816-0.288-3.36 0-1.632 0.384-3.68t1.184-5.152 0.928-3.616q-0.576-1.152-0.576-3.008 0-1.504 0.928-2.784t2.368-1.312q1.088 0 1.696 0.736t0.608 1.824q0 1.184-0.768 3.392t-0.8 3.36q0 1.12 0.8 1.856t1.952 0.736q0.992 0 1.824-0.448t1.408-1.216 0.992-1.696 0.672-1.952 0.352-1.984 0.128-1.792q0-3.072-1.952-4.8t-5.12-1.728q-3.552 0-5.952 2.304t-2.4 5.856q0 0.8 0.224 1.536t0.48 1.152 0.48 0.832 0.224 0.544q0 0.48-0.256 1.28t-0.672 0.8q-0.032 0-0.288-0.032-0.928-0.288-1.632-0.992t-1.088-1.696-0.576-1.92-0.192-1.92z"></path></svg></span></span>
</button></li>
<li class="dpsp-network-list-item dpsp-network-list-item-yummly">
<a rel="nofollow noopener" href="https://www.yummly.com/urb/verify?url=https%3A%2F%2Fhowtofeedaloon.com%2Fgrilled-tacos-al-pastor%2F&title=Grilled%20Tacos%20al%20Pastor&image=https://howtofeedaloon.com/wp-content/uploads/2025/05/grilled-tacos-al-pastor-overhead.jpg" class="dpsp-network-btn dpsp-yummly dpsp-no-label dpsp-last dpsp-has-label-mobile" target="_blank" aria-label="Share on Yummly" title="Share on Yummly" data-wpel-link="external"> <span class="dpsp-network-icon "><span class="dpsp-network-icon-inner"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 49 32"><path d="M4.576 0.128c-0.032 0.032-0.16 0.064-0.32 0.064-0.576 0.096-1.216 0.288-1.376 0.384-0.064 0.064-0.128 0.064-0.16 0.032s-0.032 0-0.032 0.064c0 0.064-0.032 0.064-0.064 0.064-0.096-0.096-1.504 0.672-1.888 1.024-0.16 0.16-0.32 0.288-0.32 0.256s-0.096 0.096-0.192 0.288c-0.16 0.256-0.192 0.416-0.192 0.672 0.032 0.224 0.096 0.448 0.16 0.512 0.032 0.064 0.064 0.096 0.032 0.096-0.096 0 0.064 0.288 0.384 0.768 0.16 0.224 0.32 0.416 0.384 0.416 0.032 0 0.096 0.032 0.064 0.064-0.032 0.128 0.384 0.416 0.576 0.416 0.128 0 0.32-0.128 0.544-0.32 0.16-0.192 0.352-0.32 0.352-0.32 0.032 0 0.192-0.096 0.384-0.224 0.704-0.48 1.6-0.608 1.856-0.288 0.064 0.064 0.16 0.128 0.192 0.096 0.064-0.032 0.064-0.032 0.032 0.032s-0.032 0.192 0 0.288c0.032 0.096 0.032 0.352 0 0.576-0.032 0.192-0.096 0.48-0.096 0.576-0.032 0.128-0.096 0.384-0.16 0.544-0.032 0.192-0.096 0.384-0.096 0.448-0.032 0.032-0.096 0.288-0.16 0.544-0.096 0.256-0.16 0.576-0.192 0.704s-0.064 0.256-0.064 0.288c-0.064 0.064-0.128 0.352-0.16 0.672-0.032 0.064-0.064 0.16-0.064 0.256-0.064 0.16-0.256 0.832-0.288 0.992 0 0.064-0.032 0.192-0.064 0.256-0.064 0.128-0.224 0.8-0.256 0.992-0.032 0.064-0.16 0.576-0.288 1.088-0.16 0.512-0.288 1.024-0.288 1.088-0.032 0.096-0.096 0.288-0.128 0.448-0.064 0.192-0.064 0.352-0.064 0.384 0.032 0.032 0.032 0.096-0.032 0.096-0.096 0.032-0.224 0.96-0.192 1.632 0 0.544 0.32 1.696 0.448 1.696 0.032 0 0.096 0.064 0.128 0.16 0.064 0.224 0.64 0.768 1.024 0.992 0.96 0.544 2.752 0.608 4.512 0.224 0.736-0.16 1.888-0.544 1.92-0.64 0-0.032 0.064-0.064 0.096-0.032 0.064 0.064 1.088-0.448 1.312-0.64 0.064-0.032 0.128-0.064 0.16-0.032 0.032 0-0.032 0.416-0.128 0.864-0.096 0.48-0.16 0.896-0.16 0.928 0 0.064-0.032 0.224-0.16 0.672 0 0.096-0.096 0.16-0.16 0.16-0.576 0-2.688 0.512-2.688 0.608 0 0.064-0.032 0.064-0.096 0.032s-1.184 0.384-1.28 0.512c-0.032 0.032-0.064 0.064-0.064 0s-0.672 0.288-0.768 0.384c0 0.032-0.064 0.096-0.096 0.096-0.16 0-0.704 0.352-0.672 0.416s0.032 0.064-0.032 0.032c-0.16-0.096-1.856 1.664-1.696 1.824 0.032 0.032 0 0.032-0.064 0.032-0.128 0-0.832 1.472-0.96 2.112-0.032 0.096-0.128 0.992-0.16 1.216-0.032 0.544 0.128 1.344 0.384 1.92 0.864 1.824 3.040 2.688 5.44 2.176 0.512-0.128 1.568-0.512 1.696-0.64 0.064-0.064 0.16-0.128 0.16-0.096 0.064 0.032 0.192 0 0.32-0.128 0.096-0.096 0.256-0.224 0.352-0.288 0.192-0.128 0.736-0.64 1.088-1.024 0.32-0.352 0.768-1.024 0.736-1.088-0.032-0.032-0.032-0.064 0.032-0.064s0.352-0.512 0.352-0.608c0-0.032 0.032-0.096 0.064-0.128 0.192-0.128 0.832-1.888 1.088-3.008 0.16-0.64 0.32-1.184 0.352-1.248 0.064-0.16 0.384-0.16 1.984 0.032 0.992 0.128 1.152 0.128 1.344 0.16 0.128 0.032 0.544 0.096 0.96 0.192 1.12 0.16 0.992 0.16 2.88 0.544 0.736 0.128 1.376 0.256 1.472 0.288 0.064 0 0.192 0.032 0.288 0.064 0.064 0.032 0.224 0.064 0.352 0.064 0.192 0.032 0.832 0.16 0.896 0.192 0.032 0 0.16 0.032 0.256 0.064 0.224 0.064 2.432 0.512 2.752 0.608 0.128 0 0.512 0.096 0.864 0.16 0.8 0.16 1.12 0.224 1.376 0.256 0.096 0 0.192 0.032 0.192 0.032 0 0.032 0.064 0.064 0.096 0.064 0.128 0 0.768 0.096 1.024 0.16 0.704 0.128 2.144 0.352 2.528 0.416 0.288 0.032 0.512 0.064 0.544 0.096 0.032 0 0.32 0.032 0.672 0.064 0.32 0.032 0.672 0.064 0.768 0.096 0.704 0.128 5.152 0.224 5.984 0.096 0.224-0.032 0.608-0.064 0.896-0.096s0.544-0.128 0.576-0.16c0.032-0.032 0.064-0.032 0.096-0.032 0.256 0.16 3.616-0.992 3.616-1.216 0-0.032 0.032-0.064 0.064-0.064 0.096 0.032 0.576-0.224 1.024-0.544 0.512-0.384 0.768-0.896 0.768-1.504 0-0.544-0.288-1.248-0.672-1.76-0.288-0.416-0.608-0.736-0.608-0.64 0 0.032-0.032 0-0.096-0.032-0.064-0.064-0.352 0.032-1.056 0.384-0.544 0.256-1.12 0.512-1.28 0.576s-0.416 0.16-0.544 0.224c-0.32 0.16-2.336 0.672-2.816 0.736-0.192 0.032-0.448 0.064-0.544 0.096-0.128 0-0.448 0.032-0.768 0.064-0.288 0.064-0.672 0.096-0.832 0.096-0.448 0.064-3.904 0.064-4.512 0-0.288 0-0.768-0.064-1.056-0.096-0.416-0.032-0.768-0.064-1.664-0.16-0.128 0-0.384-0.032-0.576-0.064-1.152-0.16-1.792-0.256-1.952-0.256-0.128-0.032-0.224-0.032-0.224-0.032 0-0.032-0.16-0.064-0.704-0.128-0.224-0.032-0.48-0.064-0.576-0.096-0.128-0.032-0.448-0.096-0.768-0.128-0.288-0.064-0.64-0.128-0.736-0.128-0.128-0.032-0.32-0.064-0.416-0.064-0.256-0.064-2.048-0.384-2.368-0.448-0.192-0.032-0.736-0.128-1.024-0.16-0.096 0-0.16-0.032-0.16-0.032 0-0.032-0.224-0.064-0.672-0.128-0.192 0-0.416-0.064-0.512-0.064-0.096-0.032-0.32-0.064-0.544-0.096-0.192-0.032-0.448-0.096-0.544-0.096-0.096-0.032-0.32-0.064-0.512-0.064-0.16-0.032-0.384-0.064-0.48-0.064-0.096-0.032-0.416-0.096-0.672-0.128-0.288-0.032-0.576-0.064-0.672-0.064-0.096-0.032-0.384-0.064-0.64-0.096-0.224-0.032-0.544-0.064-0.704-0.064-0.48-0.064-1.568-0.16-1.76-0.16-0.16 0.032-0.16 0-0.064-0.512 0.064-0.288 0.128-0.672 0.16-0.896 0.128-0.768 0.256-1.6 0.32-1.92 0.032-0.096 0.096-0.352 0.096-0.48 0.032-0.16 0.096-0.512 0.128-0.736 0.064-0.224 0.096-0.544 0.128-0.704 0-0.128 0.064-0.32 0.064-0.416 0.032-0.064 0.064-0.288 0.096-0.512 0.032-0.192 0.064-0.416 0.096-0.48 0-0.064 0.032-0.256 0.064-0.416s0.064-0.384 0.096-0.512c0.032-0.192 0.128-0.704 0.16-1.056 0.032-0.128 0.064-0.352 0.16-0.832 0.032-0.096 0.064-0.32 0.096-0.544 0.032-0.192 0.064-0.448 0.096-0.544 0.032-0.224 0.096-0.544 0.16-0.896 0.032-0.128 0.096-0.576 0.16-0.928 0.064-0.384 0.128-0.8 0.16-0.96s0.096-0.576 0.16-0.896c0.096-0.32 0.16-0.768 0.16-0.96 0.032-0.224 0.064-0.416 0.096-0.48 0.032-0.032 0.064-0.224 0.096-0.448 0-0.192 0.064-0.416 0.064-0.48 0.032-0.064 0.064-0.288 0.096-0.48 0-0.192 0.032-0.384 0.064-0.416 0.096-0.128 0.16-1.152 0.096-1.536-0.032-0.224-0.128-0.48-0.192-0.544-0.096-0.096-0.16-0.192-0.128-0.224 0.032 0-0.128-0.128-0.32-0.224-0.672-0.352-2.176-0.288-2.912 0.128-0.256 0.16-0.288 0.192-0.256 0.512 0.064 0.832 0.032 1.728-0.096 2.496-0.096 0.448-0.16 0.896-0.192 0.96 0 0.064-0.032 0.288-0.064 0.448-0.032 0.192-0.096 0.416-0.096 0.512-0.032 0.096-0.064 0.256-0.064 0.384-0.032 0.096-0.064 0.32-0.096 0.48s-0.128 0.8-0.256 1.376c-0.096 0.608-0.224 1.248-0.224 1.408-0.032 0.16-0.096 0.48-0.16 0.736-0.032 0.256-0.096 0.544-0.128 0.672 0 0.128-0.032 0.352-0.064 0.512s-0.16 0.768-0.256 1.376c-0.128 0.608-0.192 1.152-0.192 1.184 0 0.096-0.768 0.544-1.312 0.736-0.192 0.064-0.384 0.16-0.384 0.224s0 0.064-0.032 0.032-0.352 0.064-0.736 0.192c-1.632 0.544-3.008 0.608-3.488 0.128-0.192-0.192-0.192-0.256-0.192-0.928 0-0.736 0.032-0.896 0.992-4.448 0.064-0.256 0.096-0.512 0.064-0.512 0-0.032 0.032-0.096 0.064-0.096 0.032-0.032 0.096-0.16 0.128-0.288 0-0.128 0.032-0.256 0.032-0.256 0.032 0 0.064-0.128 0.128-0.48 0.096-0.48 0.096-0.512 0.128-0.544 0 0 0.032-0.032 0.032-0.064s0.064-0.224 0.128-0.448c0.064-0.192 0.128-0.448 0.128-0.544s0.032-0.224 0.064-0.288c0.48-1.344 0.48-3.2 0-4.256-0.352-0.8-1.216-1.408-2.208-1.6-0.416-0.064-1.696-0.096-1.76-0.032zM10.944 23.968c-0.032 0.192-0.128 0.416-0.16 0.544s-0.064 0.256-0.064 0.288c0 0.064 0 0.096-0.352 0.96-0.128 0.288-0.224 0.576-0.192 0.576 0.032 0.032 0 0.064-0.064 0.064s-0.224 0.32-0.192 0.448c0 0.032 0 0.032-0.032 0.032-0.064-0.032-0.16 0.064-0.224 0.224-0.192 0.288-0.608 0.704-0.832 0.768-0.064 0.032-0.128 0.064-0.128 0.096 0 0.096-0.064 0.096-0.704 0.128-0.544 0.032-0.736-0.064-0.96-0.512-0.16-0.224-0.128-0.992 0.032-1.408 0.064-0.16 0.128-0.352 0.128-0.416s0.032-0.096 0.064-0.064c0.064 0.032 0.096-0.032 0.128-0.128 0.064-0.192 0.832-0.928 0.992-0.928 0.032 0 0.032-0.032 0-0.064-0.032-0.064 0-0.096 0.032-0.096 0.096 0.064 0.704-0.256 0.8-0.384 0.032-0.032 0.064-0.032 0.064 0s0.064 0 0.16-0.032c0.16-0.096 1.28-0.416 1.472-0.416 0.064 0 0.064 0.096 0.032 0.32zM38.848 5.952c-0.16 0.032-0.384 0.064-0.512 0.096-0.288 0.064-1.44 0.48-1.504 0.576-0.032 0.064-0.064 0.064-0.064 0.032s-0.16 0.032-0.352 0.096c-0.32 0.192-0.576 0.224-0.544 0.128 0-0.128-0.128-0.352-0.256-0.352-0.064 0-0.096-0.032-0.096-0.064 0-0.16-0.608-0.352-1.312-0.384-0.48-0.064-2.048 0.384-1.92 0.512 0.032 0 0 0.096-0.032 0.128-0.064 0.096-0.064 0.224 0 0.448 0.096 0.416 0.096 1.248 0 1.632-0.064 0.16-0.096 0.416-0.128 0.64s-0.032 0.384-0.032 0.384c-0.032 0-0.064 0.16-0.128 0.576-0.032 0.16-0.064 0.384-0.096 0.48-0.032 0.128-0.064 0.32-0.064 0.48-0.032 0.16-0.064 0.384-0.096 0.512-0.064 0.224-0.448 2.496-0.512 2.816-0.032 0.256-0.096 0.576-0.192 1.184-0.064 0.256-0.128 0.608-0.128 0.768-0.032 0.128-0.064 0.384-0.096 0.48-0.288 1.6 0.032 2.368 1.056 2.592 0.48 0.128 1.728 0.032 1.888-0.096 0.032-0.032 0.128-0.064 0.224-0.064 0.064 0 0.128-0.032 0.128-0.096 0-0.032 0.032-0.064 0.064-0.064 0.352 0.064 0.448-0.224 0.32-0.8-0.128-0.544-0.096-0.896 0.096-1.856 0.064-0.416 0.16-0.864 0.16-0.992 0.032-0.128 0.064-0.352 0.096-0.448 0.096-0.544 0.128-0.64 0.16-0.896 0.032-0.128 0.064-0.352 0.064-0.48 0.032-0.16 0.064-0.384 0.096-0.512 0.224-1.152 0.288-1.568 0.256-1.632-0.032-0.032-0.032-0.096 0.032-0.128 0.032 0 0.064-0.128 0.064-0.256s0.064-0.48 0.128-0.736l0.096-0.512 0.576-0.256c0.64-0.32 0.992-0.416 1.44-0.32 0.544 0.096 0.704 0.704 0.512 1.824-0.032 0.192-0.096 0.416-0.096 0.512-0.032 0.096-0.064 0.256-0.064 0.384-0.032 0.096-0.064 0.32-0.096 0.48s-0.096 0.608-0.16 1.024c-0.064 0.384-0.16 0.832-0.16 1.024-0.032 0.16-0.064 0.32-0.096 0.384-0.032 0.032-0.064 0.224-0.096 0.48 0 0.224-0.064 0.48-0.096 0.608-0.224 1.152-0.288 2.112-0.16 2.56 0.128 0.32 0.608 0.8 0.736 0.768 0.064-0.032 0.192 0 0.32 0.064 0.256 0.16 1.376 0.096 1.984-0.096 0.576-0.16 0.8-0.384 0.736-0.672-0.032-0.128-0.096-0.32-0.096-0.448-0.032-0.128-0.064-0.256-0.064-0.288-0.032-0.064 0.032-0.512 0.128-1.024 0.064-0.512 0.16-1.056 0.192-1.216s0.096-0.448 0.128-0.704c0.096-0.448 0.16-0.896 0.192-1.152 0.032-0.096 0.096-0.544 0.16-0.96 0.096-0.448 0.16-0.896 0.192-0.992 0-0.128 0.064-0.352 0.064-0.512 0.032-0.16 0.128-0.544 0.16-0.864l0.096-0.576 0.544-0.288c0.768-0.384 1.344-0.48 1.664-0.288 0.16 0.096 0.32 0.288 0.352 0.416 0.096 0.256 0.032 1.088-0.128 1.984-0.064 0.288-0.096 0.448-0.288 1.664-0.224 1.312-0.256 1.472-0.32 1.792 0 0.16-0.032 0.352-0.064 0.416 0 0.064-0.064 0.256-0.064 0.384-0.032 0.16-0.096 0.416-0.096 0.544-0.224 1.216-0.224 1.76 0 2.24 0.128 0.224 0.288 0.352 0.576 0.512 0.384 0.192 0.512 0.192 1.216 0.192 0.608 0 0.896-0.032 1.28-0.192 0.608-0.224 0.672-0.352 0.544-0.928-0.096-0.512-0.032-1.408 0.192-2.464 0.032-0.224 0.096-0.576 0.128-0.736 0.032-0.192 0.096-0.608 0.16-0.928 0.064-0.288 0.096-0.576 0.096-0.608s0-0.064 0.032-0.096c0.032-0.096 0.064-0.288 0.096-0.672 0.032-0.224 0.096-0.448 0.096-0.512 0.032-0.064 0.064-0.256 0.096-0.416 0-0.16 0.064-0.384 0.064-0.448 0.032-0.128 0.064-0.32 0.096-0.48s0.064-0.352 0.064-0.448c0.224-1.088 0.32-2.272 0.192-2.848-0.096-0.512-0.128-0.576-0.256-0.832-0.416-0.8-1.12-1.184-2.432-1.248-0.608-0.032-2.464 0.448-2.464 0.64 0 0.064 0 0.064-0.032 0.032s-0.384 0.128-0.736 0.32l-0.704 0.352-0.16-0.224c-0.224-0.416-0.608-0.736-1.088-0.896-0.48-0.192-1.504-0.288-1.952-0.16zM21.536 6.048c0 0.032-0.224 0.064-0.48 0.064-0.544 0.064-1.184 0.224-1.184 0.352 0 0.032-0.032 0.032-0.064 0.032-0.032-0.032-0.128 0-0.224 0.096-0.128 0.16-0.128 0.192 0.032 0.832 0.064 0.224 0.032 0.864-0.064 1.376-0.064 0.288-0.128 0.608-0.128 0.768 0 0.128-0.064 0.416-0.128 0.64-0.032 0.224-0.096 0.544-0.128 0.704-0.064 0.544-0.096 0.704-0.16 0.864 0 0.064-0.064 0.32-0.064 0.544-0.032 0.224-0.064 0.416-0.096 0.448 0 0.032-0.064 0.224-0.096 0.48-0.032 0.224-0.064 0.48-0.064 0.544-0.032 0.064-0.064 0.256-0.096 0.416-0.096 0.544-0.128 0.8-0.16 1.024-0.16 0.896-0.096 2.208 0.096 2.624 0.064 0.096 0.128 0.256 0.192 0.384 0.16 0.352 0.704 0.896 1.056 1.024 0.928 0.384 1.664 0.416 2.784 0.128 0.224-0.064 0.416-0.128 0.448-0.128 0.064 0 0.16-0.064 0.256-0.096 0.704-0.288 1.472-0.544 1.504-0.512 0 0 0.064 0.128 0.128 0.256 0.288 0.608 0.896 0.864 1.888 0.864 0.64-0.032 1.536-0.256 1.632-0.416 0.032-0.032 0.096-0.064 0.128-0.096 0.032 0 0.064-0.16 0.064-0.384-0.096-1.248-0.096-1.472-0.032-1.76 0.032-0.16 0.096-0.416 0.128-0.576 0.064-0.576 0.128-0.96 0.16-1.12 0.032-0.096 0.064-0.288 0.096-0.448s0.064-0.384 0.096-0.48c0-0.096 0.032-0.288 0.064-0.448s0.096-0.576 0.16-0.896c0.064-0.288 0.128-0.576 0.096-0.608s0-0.096 0.032-0.16c0.032-0.096 0.096-0.32 0.128-0.512 0.032-0.224 0.064-0.48 0.096-0.608 0.032-0.192 0.32-1.792 0.416-2.272 0-0.16 0.064-0.352 0.064-0.48 0.128-0.448 0.064-1.312-0.096-1.632-0.128-0.288-0.736-0.768-0.832-0.672-0.032 0.032-0.096 0-0.16-0.032-0.096-0.096-1.088-0.128-1.44-0.032-0.448 0.096-1.056 0.32-1.184 0.416-0.096 0.096-0.096 0.192-0.032 0.544 0.096 0.448 0.096 1.312 0 1.824-0.032 0.16-0.128 0.576-0.192 0.928-0.064 0.32-0.096 0.64-0.096 0.64 0 0.032 0 0.096 0 0.128-0.032 0.064-0.096 0.352-0.128 0.576-0.032 0.192-0.128 0.704-0.192 1.024-0.032 0.096-0.064 0.32-0.064 0.48-0.032 0.16-0.064 0.32-0.064 0.384-0.032 0.032-0.064 0.256-0.096 0.48-0.064 0.224-0.096 0.448-0.096 0.48 0 0-0.064 0.32-0.128 0.704-0.096 0.576-0.128 0.64-0.352 0.736-0.128 0.064-0.224 0.128-0.192 0.128 0.032 0.032-0.032 0.064-0.096 0.064-0.096 0-0.32 0.064-0.512 0.16-0.864 0.32-1.856 0.064-1.92-0.512 0-0.096-0.032-0.224-0.032-0.288 0-0.16 0.16-1.472 0.192-1.472 0 0 0.032-0.064 0.032-0.16s0.032-0.288 0.064-0.416c0.032-0.128 0.096-0.384 0.096-0.512 0.128-0.704 0.192-1.152 0.256-1.44 0.032-0.128 0.064-0.384 0.096-0.544 0.032-0.192 0.128-0.8 0.256-1.344 0.288-1.632 0.16-2.432-0.416-2.784-0.16-0.064-0.288-0.16-0.352-0.16-0.512-0.096-0.864-0.16-0.896-0.16z"></path></svg></span></span>
</a></li>
</ul></aside>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript">(function (d) {var f = d.getElementsByTagName('SCRIPT')[0],p = d.createElement('SCRIPT');p.type = 'text/javascript';p.async = true;p.src = '//assets.pinterest.com/js/pinit.js';f.parentNode.insertBefore(p, f);})(document);</script><script type="rocketlazyloadscript">window.wprm_recipes = {"recipe-42893":{"type":"food","name":"Grilled Tacos al Pastor","slug":"wprm-grilled-tacos-al-pastor","image_url":"https:\/\/howtofeedaloon.com\/wp-content\/uploads\/2025\/05\/grilled-tacos-al-pastor-IG.jpg","rating":{"count":0,"total":0,"average":0,"type":{"comment":0,"no_comment":0,"user":0},"user":0},"ingredients":[{"uid":0,"amount":"1","unit":"cup","name":"vegetable oil","notes":"","unit_id":23259,"id":4699,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"cup","unitParsed":"cup"}}},{"uid":2,"amount":"20","unit":"","name":"guajillo chiles","notes":"dried, stems and seeds removed","id":14246,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"20","unit":"","unitParsed":""}}},{"uid":3,"amount":"35","unit":"","name":"chiles de Arbol","notes":"dried, stems and seeds removed","id":25035,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"35","unit":"","unitParsed":""}}},{"uid":4,"amount":"4","unit":"cloves","name":"garlic","notes":"","unit_id":23260,"id":6159,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"4","unit":"cloves","unitParsed":"cloves"}}},{"uid":5,"amount":"2","unit":"tsp","name":"Kosher salt","notes":"","unit_id":23264,"id":4288,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"2","unit":"tsp","unitParsed":"tsp"}}},{"uid":6,"amount":"1","unit":"","name":"chicken bouillon cube","notes":"","id":8733,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"","unitParsed":""}}},{"uid":20,"amount":"1","unit":"3 lb","name":"pork shoulder","notes":"boneless","unit_id":23835,"id":23522,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"3 lb","unitParsed":"3 lb"}}},{"uid":8,"amount":"\u00bd","unit":"cup","name":"pineapple juice","notes":"","unit_id":23259,"id":4843,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bd","unit":"cup","unitParsed":"cup"}}},{"uid":9,"amount":"\u00bd","unit":"cup","name":"distilled white vinegar","notes":"","unit_id":23259,"id":6075,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bd","unit":"cup","unitParsed":"cup"}}},{"uid":10,"amount":"\u00bc","unit":"cup","name":"chili paste","notes":"","unit_id":23259,"id":22822,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bc","unit":"cup","unitParsed":"cup"}}},{"uid":11,"amount":"\u00bc","unit":"cup","name":"achiote paste","notes":"","unit_id":23259,"id":25036,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bc","unit":"cup","unitParsed":"cup"}}},{"uid":12,"amount":"6","unit":"tbsp","name":"light brown sugar","notes":"","unit_id":23263,"id":4836,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"6","unit":"tbsp","unitParsed":"tbsp"}}},{"uid":13,"amount":"4","unit":"cloves","name":"garlic","notes":"","unit_id":23260,"id":6159,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"4","unit":"cloves","unitParsed":"cloves"}}},{"uid":14,"amount":"1\u00bd","unit":"tsp","name":"oregano","notes":"dried, preferably Mexican","unit_id":23264,"id":5065,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1\u00bd","unit":"tsp","unitParsed":"tsp"}}},{"uid":15,"amount":"1\u00bd","unit":"tsp","name":"cumin","notes":"ground","unit_id":23264,"id":6336,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1\u00bd","unit":"tsp","unitParsed":"tsp"}}},{"uid":16,"amount":"1\u00bd","unit":"tsp","name":"black pepper","notes":"","unit_id":23264,"id":5761,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1\u00bd","unit":"tsp","unitParsed":"tsp"}}},{"uid":17,"amount":"\u00bd","unit":"tsp","name":"ground cinnamon","notes":"","unit_id":23264,"id":4297,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bd","unit":"tsp","unitParsed":"tsp"}}},{"uid":18,"amount":"\u00bc","unit":"tsp","name":"ground cloves","notes":"","unit_id":23264,"id":13915,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"\u00bc","unit":"tsp","unitParsed":"tsp"}}},{"uid":19,"amount":"2","unit":"tbsp","name":"Kosher salt","notes":"","unit_id":23263,"id":4288,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"2","unit":"tbsp","unitParsed":"tbsp"}}},{"uid":22,"amount":"1","unit":"whole","name":"pineapple","notes":"","unit_id":24337,"id":6375,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"whole","unitParsed":"whole"}}},{"uid":21,"amount":"12","unit":"","name":"corn tortillas","notes":"","id":5026,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"12","unit":"","unitParsed":""}}},{"uid":23,"amount":"1","unit":"cup","name":"red onion","notes":"finely chopped, for garnish","unit_id":23259,"id":6603,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"1","unit":"cup","unitParsed":"cup"}}},{"uid":24,"amount":"","unit":"","name":"cilantro","notes":"fresh, chopped, for garnish","id":7031,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"","unit":"","unitParsed":""}}},{"uid":25,"amount":"","unit":"","name":"lime wedges","notes":"for serving","id":10989,"type":"ingredient","unit_systems":{"unit-system-1":{"amount":"","unit":"","unitParsed":""}}}],"originalServings":"6","originalServingsParsed":6,"currentServings":"6","currentServingsParsed":6,"currentServingsFormatted":"6","currentServingsMultiplier":1,"originalSystem":1,"currentSystem":1,"unitSystems":[1],"originalAdvancedServings":{"shape":"round","unit":"inch","diameter":0,"width":0,"length":0,"height":0},"currentAdvancedServings":{"shape":"round","unit":"inch","diameter":0,"width":0,"length":0,"height":0},"collection":{"type":"recipe","recipeId":42893,"name":"Grilled Tacos al Pastor","image":"https:\/\/howtofeedaloon.com\/wp-content\/uploads\/2025\/05\/grilled-tacos-al-pastor-IG-360x360.jpg","servings":6,"servingsUnit":"","parent_id":"42866","parent_url":"https:\/\/howtofeedaloon.com\/grilled-tacos-al-pastor\/"}}}</script><div id="grow-wp-data" data-grow='{"content":{"ID":42866,"categories":[{"ID":24912},{"ID":24909},{"ID":17979},{"ID":24915},{"ID":2}]}}'></div><style id='core-block-supports-inline-css'>
.wp-container-core-columns-is-layout-1{flex-wrap:nowrap;}.wp-container-core-columns-is-layout-2{flex-wrap:nowrap;}.wp-container-core-columns-is-layout-3{flex-wrap:nowrap;}.wp-container-core-columns-is-layout-4{flex-wrap:nowrap;}.wp-container-core-columns-is-layout-5{flex-wrap:nowrap;}.wp-container-core-columns-is-layout-6{flex-wrap:nowrap;}.wp-container-core-columns-is-layout-7{flex-wrap:nowrap;}.wp-container-core-columns-is-layout-8{flex-wrap:nowrap;}.wp-container-core-columns-is-layout-9{flex-wrap:nowrap;}.wp-container-core-buttons-is-layout-1{justify-content:center;}.wp-container-core-buttons-is-layout-2{justify-content:center;}.wp-container-core-columns-is-layout-10{flex-wrap:nowrap;}.wp-container-core-columns-is-layout-11{flex-wrap:nowrap;}
</style>
<script id="wprm-public-js-extra">
var wprm_public = {"user":"0","endpoints":{"analytics":"https:\/\/howtofeedaloon.com\/wp-json\/wp-recipe-maker\/v1\/analytics","integrations":"https:\/\/howtofeedaloon.com\/wp-json\/wp-recipe-maker\/v1\/integrations","manage":"https:\/\/howtofeedaloon.com\/wp-json\/wp-recipe-maker\/v1\/manage","utilities":"https:\/\/howtofeedaloon.com\/wp-json\/wp-recipe-maker\/v1\/utilities"},"settings":{"jump_output_hash":true,"features_comment_ratings":true,"template_color_comment_rating":"#444444","instruction_media_toggle_default":"on","video_force_ratio":false,"analytics_enabled":false,"google_analytics_enabled":true,"print_new_tab":true,"print_recipe_identifier":"slug"},"post_id":"42866","home_url":"https:\/\/howtofeedaloon.com\/","print_slug":"wprm_print","permalinks":"\/%postname%\/","ajax_url":"https:\/\/howtofeedaloon.com\/wp-admin\/admin-ajax.php","nonce":"364a6ab57c","api_nonce":"ab575f25f6","translations":{"Select a collection":"Select a collection","Select a column":"Select a column","Select a group":"Select a group","Open the shopping list":"Open the shopping list","Shopping List":"Shopping List","Print this collection":"Print this collection","Print recipes in this collection":"Print recipes in this collection","Print":"Print","Print Collection":"Print Collection","Print Recipes":"Print Recipes","Hide Nutrition Facts":"Hide Nutrition Facts","Show Nutrition Facts":"Show Nutrition Facts","Share This Collection":"Share This Collection","Shared Collection":"Shared Collection","Copy Share Link":"Copy Share Link","The link copied to your clipboard will allow others to access (but not edit) this collection.":"The link copied to your clipboard will allow others to access (but not edit) this collection.","Stop Sharing Collection":"Stop Sharing Collection","Start Sharing Collection":"Start Sharing Collection","Change Collection Structure":"Change Collection Structure","Are you sure you want to remove all items from this collection?":"Are you sure you want to remove all items from this collection?","Clear all items in this collection":"Clear all items in this collection","Clear Items":"Clear Items","Description for this collection:":"Description for this collection:","Change the description for this collection":"Change the description for this collection","Set a description for this collection":"Set a description for this collection","Change Description":"Change Description","Set Description":"Set Description","Something went wrong. Please try again.":"Something went wrong. Please try again.","Save to my Collections":"Save to my Collections","None":"None","Blue":"Blue","Red":"Red","Green":"Green","Yellow":"Yellow","Note":"Note","Color":"Color","Name":"Name","Ingredients":"Ingredients","cup":"cup","olive oil":"olive oil","Add Ingredient":"Add Ingredient","Edit Ingredients":"Edit Ingredients","Text":"Text","Nutrition Facts (per serving)":"Nutrition Facts (per serving)","Add Column":"Add Column","Edit Columns":"Edit Columns","Add Group":"Add Group","Edit Groups":"Edit Groups","Add Item":"Add Item","Remove Items":"Remove Items","Columns & Groups":"Columns & Groups","Remove All Items":"Remove All Items","Stop Removing Items":"Stop Removing Items","Actions":"Actions","Click to add:":"Click to add:","Drag and drop to add:":"Drag and drop to add:","Load more...":"Load more...","Search Recipes":"Search Recipes","Search Ingredients":"Search Ingredients","Add Custom Recipe":"Add Custom Recipe","Add Note":"Add Note","Add from Collection":"Add from Collection","Start typing to search...":"Start typing to search...","Your Collections":"Your Collections","Editing User":"Editing User","Shared Collection:":"Shared Collection:","Cancel":"Cancel","Go Back":"Go Back","Edit Item":"Edit Item","Change Name":"Change Name","Move Left":"Move Left","Move Right":"Move Right","Duplicate":"Duplicate","Delete Column":"Delete Column","Are you sure you want to delete?":"Are you sure you want to delete?","Add a column to this collection":"Add a column to this collection","Click to set name":"Click to set name","Set a new amount for this ingredient:":"Set a new amount for this ingredient:","Change ingredient amount":"Change ingredient amount","Set the number of servings":"Set the number of servings","Set serving size":"Set serving size","servings":"servings","View Recipe":"View Recipe","Edit Custom Recipe":"Edit Custom Recipe","Edit Note":"Edit Note","Duplicate Item":"Duplicate Item","Change Servings":"Change Servings","Do not mark as leftovers":"Do not mark as leftovers","Mark as leftovers":"Mark as leftovers","Remove Item":"Remove Item","Edit Recipe":"Edit Recipe","Make sure to \"Reload Recipes in Collection\" after saving the collection to see these changes reflected.":"Make sure to \"Reload Recipes in Collection\" after saving the collection to see these changes reflected.","Add item to this collection group":"Add item to this collection group","Leftovers":"Leftovers","Decrease serving size by one":"Decrease serving size by one","Increase serving size by one":"Increase serving size by one","Description":"Description","Columns":"Columns","Groups":"Groups","Collection Items":"Collection Items","Clear All Items":"Clear All Items","Done":"Done","Add to Collection":"Add to Collection","Close":"Close","Move Up":"Move Up","Move Down":"Move Down","Delete Group":"Delete Group","Nutrition Facts":"Nutrition Facts","Something went wrong. Please contact support.":"Something went wrong. Please contact support.","Click to confirm...":"Click to confirm...","Are you sure you want to delete all items in":"Are you sure you want to delete all items in","Delete":"Delete","Stop Editing":"Stop Editing","Recipe":"Recipe","Regenerate this shopping list":"Regenerate this shopping list","Regenerate Shopping List":"Regenerate Shopping List","Print this shpopping list":"Print this shpopping list","Print recipes in this shopping list":"Print recipes in this shopping list","Print Shopping List":"Print Shopping List","The link copied to your clipboard will allow others to edit this shopping list.":"The link copied to your clipboard will allow others to edit this shopping list.","Copy this link to allow others to edit this shopping list:":"Copy this link to allow others to edit this shopping list:","Share Edit Link":"Share Edit Link","Stop editing this shopping list":"Stop editing this shopping list","Start editing this shopping list":"Start editing this shopping list","Edit Shopping List":"Edit Shopping List","Shop this list with Instacart":"Shop this list with Instacart","Shop with Instacart":"Shop with Instacart","Generate a shopping list for these recipes":"Generate a shopping list for these recipes","Generate Shopping List":"Generate Shopping List","Remove all recipes from this shopping list":"Remove all recipes from this shopping list","Remove All":"Remove All","Shopping List Options":"Shopping List Options","Include ingredient notes":"Include ingredient notes","Preferred Unit System":"Preferred Unit System","Deselect all":"Deselect all","Select all":"Select all","Collection":"Collection","Unnamed":"Unnamed","remove":"remove","Something went wrong. Please try again later.":"Something went wrong. Please try again later.","Make sure to select some recipes for the shopping list first.":"Make sure to select some recipes for the shopping list first.","Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.":"Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.","Are you sure you want to remove all recipes from this shopping list?":"Are you sure you want to remove all recipes from this shopping list?","Back":"Back","No recipes have been added to the shopping list yet.":"No recipes have been added to the shopping list yet.","Click the cart icon in the top right to generate the shopping list.":"Click the cart icon in the top right to generate the shopping list.","Select recipes and click the cart icon in the top right to generate the shopping list.":"Select recipes and click the cart icon in the top right to generate the shopping list.","Click the cart icon in the top right to generate a new shopping list.":"Click the cart icon in the top right to generate a new shopping list.","Changes to the collection have been made since this shopping list was generated.":"Changes to the collection have been made since this shopping list was generated.","Regenerate the shopping list to include these changes.":"Regenerate the shopping list to include these changes.","Ignore this warning":"Ignore this warning","Ignore":"Ignore","Right click and copy this link to allow others to edit this shopping list.":"Right click and copy this link to allow others to edit this shopping list.","Delete this ingredient from the shopping list":"Delete this ingredient from the shopping list","List":"List","Are you sure you want to delete this group, and all of the items in it?":"Are you sure you want to delete this group, and all of the items in it?","Delete this shopping list group":"Delete this shopping list group","Your shopping list is empty.":"Your shopping list is empty.","Group":"Group","Add a new collection":"Add a new collection","Add Collection":"Add Collection","Empty Collection":"Empty Collection","Add Pre-made Collection":"Add Pre-made Collection","Edit Collections":"Edit Collections","Select a collection to add for this user":"Select a collection to add for this user","Add Saved Collection":"Add Saved Collection","Change collection name":"Change collection name","Go to Shopping List":"Go to Shopping List","Recipes":"Recipes","Shared collection not found.":"Shared collection not found.","No data found.":"No data found.","Metric":"Metric","Average":"Average","Median":"Median","Maximum (1 user)":"Maximum (1 user)","Total (all users)":"Total (all users)","Sort:":"Sort:","Filter:":"Filter:","Recipe Name":"Recipe Name","# Users":"# Users","# Added":"# Added","Last 31 Days":"Last 31 Days","Last 7 Days":"Last 7 Days","Collections Usage":"Collections Usage","Recipes used in Collections":"Recipes used in Collections","Number of users that have this recipe in one of their collections at least once":"Number of users that have this recipe in one of their collections at least once","Total times that this recipe can be found in a collection (could be multiple times per user)":"Total times that this recipe can be found in a collection (could be multiple times per user)","Last X Days":"Last X Days","Total times that this recipe can be found in a collection, having been added to that collection during this timeframe":"Total times that this recipe can be found in a collection, having been added to that collection during this timeframe","Decrease serving size by 1":"Decrease serving size by 1","Increase serving size by 1":"Increase serving size by 1","Select Amazon Product":"Select Amazon Product","Change Amazon Product":"Change Amazon Product","Find Amazon Product:":"Find Amazon Product:","Search":"Search","Error":"Error","No products found for":"No products found for","No products found.":"No products found.","Results for":"Results for","Current Product":"Current Product","Select Product":"Select Product","Nothing to add products to yet.":"Nothing to add products to yet.","In recipe":"In recipe","Product":"Product","Amount needed":"Amount needed","Change Product":"Change Product","A name is required for this saved nutrition ingredient.":"A name is required for this saved nutrition ingredient.","Save a new Custom Ingredient":"Save a new Custom Ingredient","Amount":"Amount","Unit":"Unit","Name (required)":"Name (required)","Save for Later & Use":"Save for Later & Use","Use":"Use","Select a saved ingredient":"Select a saved ingredient","Match this equation to get the correct amounts:":"Match this equation to get the correct amounts:","Cancel Calculation":"Cancel Calculation","Go to Next Step":"Go to Next Step","Use These Values":"Use These Values","Nutrition Calculation":"Nutrition Calculation","Experiencing issues?":"Experiencing issues?","Check the API Status":"Check the API Status","n\/a":"n\/a","Values of all the checked ingredients will be added together and":"Values of all the checked ingredients will be added together and","divided by":"divided by","the number of servings for this recipe.":"the number of servings for this recipe.","Values of all the checked ingredients will be added together.":"Values of all the checked ingredients will be added together.","API Ingredients":"API Ingredients","Custom Ingredients":"Custom Ingredients","Recipe Nutrition Facts Preview":"Recipe Nutrition Facts Preview","Changes to these values can be made after confirming with the blue button.":"Changes to these values can be made after confirming with the blue button.","Select or search for a saved ingredient":"Select or search for a saved ingredient","No ingredients set for this recipe.":"No ingredients set for this recipe.","Used in Recipe":"Used in Recipe","Used for Calculation":"Used for Calculation","Nutrition Source":"Nutrition Source","Match & Units":"Match & Units","API":"API","Saved\/Custom":"Saved\/Custom","no match found":"no match found","Units n\/a":"Units n\/a","Find a match for:":"Find a match for:","No ingredients found for":"No ingredients found for","No ingredients found.":"No ingredients found.","Editing Equipment Affiliate Fields":"Editing Equipment Affiliate Fields","The fields you set here will affect all recipes using this equipment.":"The fields you set here will affect all recipes using this equipment.","Regular Links":"Regular Links","Images":"Images","HTML Code":"HTML Code","Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.":"Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.","Save Changes":"Save Changes","other recipe(s) affected":"other recipe(s) affected","This can affect other recipes":"This can affect other recipes","Edit Link":"Edit Link","Remove Link":"Remove Link","Are you sure you want to delete this link?":"Are you sure you want to delete this link?","Set Affiliate Link":"Set Affiliate Link","Edit Image":"Edit Image","Remove Image":"Remove Image","Add Image":"Add Image","This feature is only available in":"This feature is only available in","You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.":"You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.","Original Unit System for this recipe":"Original Unit System for this recipe","Use Default":"Use Default","First Unit System":"First Unit System","Second Unit System":"Second Unit System","Conversion":"Conversion","Converted":"Converted","Original":"Original","Convert All Automatically":"Convert All Automatically","Convert":"Convert","Keep Unit":"Keep Unit","Automatically":"Automatically","Weight Units":"Weight Units","Volume Units":"Volume Units","Convert...":"Convert...","Ingredient Link Type":"Ingredient Link Type","Global: the same link will be used for every recipe with this ingredient":"Global: the same link will be used for every recipe with this ingredient","Custom: these links will only affect the recipe below":"Custom: these links will only affect the recipe below","Use Global Links":"Use Global Links","Custom Links for this Recipe only":"Custom Links for this Recipe only","Edit Global Links":"Edit Global Links","Affiliate Link":"Affiliate Link","No link set":"No link set","No equipment set for this recipe.":"No equipment set for this recipe.","Regular Link":"Regular Link","Image":"Image","Edit Affiliate Fields":"Edit Affiliate Fields","No HTML set":"No HTML set","Editing Global Ingredient Links":"Editing Global Ingredient Links","All fields are required.":"All fields are required.","Something went wrong. Make sure this key does not exist yet.":"Something went wrong. Make sure this key does not exist yet.","Are you sure you want to close without saving changes?":"Are you sure you want to close without saving changes?","Editing Custom Field":"Editing Custom Field","Creating new Custom Field":"Creating new Custom Field","Type":"Type","Key":"Key","my-custom-field":"my-custom-field","My Custom Field":"My Custom Field","Save":"Save","Editing Product":"Editing Product","Setting Product":"Setting Product","Product ID":"Product ID","No product set yet":"No product set yet","Product Name":"Product Name","Unset Product":"Unset Product","Search for products":"Search for products","No products found":"No products found","A label and key are required.":"A label and key are required.","Editing Nutrient":"Editing Nutrient","Creating new Nutrient":"Creating new Nutrient","Custom":"Custom","Calculated":"Calculated","my-custom-nutrient":"my-custom-nutrient","Label":"Label","My Custom Nutrient":"My Custom Nutrient","mg":"mg","Daily Need":"Daily Need","Calculation":"Calculation","Learn more":"Learn more","Decimal Precision":"Decimal Precision","Order":"Order","Loading...":"Loading...","Editing Nutrition Ingredient":"Editing Nutrition Ingredient","Creating new Nutrition Ingredient":"Creating new Nutrition Ingredient","Are you sure you want to overwrite the existing values?":"Are you sure you want to overwrite the existing values?","Import values from recipe":"Import values from recipe","Cancel import":"Cancel import","Use this recipe":"Use this recipe","Edit Recipe Submission":"Edit Recipe Submission","Approve Submission":"Approve Submission","Approve Submission & Add to new Post":"Approve Submission & Add to new Post","Delete Recipe Submission":"Delete Recipe Submission","Are you sure you want to delete":"Are you sure you want to delete","ID":"ID","Date":"Date","User":"User","Edit Nutrient":"Edit Nutrient","Delete Custom Nutrient":"Delete Custom Nutrient","Active":"Active","View and edit collections for this user":"View and edit collections for this user","User ID":"User ID","Display Name":"Display Name","Email":"Email","# Collections":"# Collections","Show All":"Show All","Has Saved Collections":"Has Saved Collections","Does not have Saved Collections":"Does not have Saved Collections","# Items in Inbox":"# Items in Inbox","# Items in Collections":"# Items in Collections","Your Custom Fields":"Your Custom Fields","Custom Field":"Custom Field","Custom Fields":"Custom Fields","Custom Nutrition Ingredient":"Custom Nutrition Ingredient","Custom Nutrition":"Custom Nutrition","Custom Nutrient":"Custom Nutrient","Custom Nutrients":"Custom Nutrients","Features":"Features","Saved Collection":"Saved Collection","Saved Collections":"Saved Collections","User Collection":"User Collection","User Collections":"User Collections","Recipe Submissions":"Recipe Submissions","Recipe Submission":"Recipe Submission","Edit Field":"Edit Field","Delete Field":"Delete Field","Edit Custom Ingredient":"Edit Custom Ingredient","Delete Custom Ingredient":"Delete Custom Ingredient","Edit Saved Collection":"Edit Saved Collection","Reload Recipes":"Reload Recipes","Duplicate Saved Collection":"Duplicate Saved Collection","Delete Saved Collection":"Delete Saved Collection","Category":"Category","Change Category":"Change Category","What do you want to be the category group for":"What do you want to be the category group for","Default":"Default","Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.":"Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.","Push to All":"Push to All","Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.":"Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.","Template":"Template","Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".":"Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".","Quick Add":"Quick Add","Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.":"Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.","What do you want the new order to be?":"What do you want the new order to be?","Save Collection Link":"Save Collection Link","# Items":"# Items"},"version":{"free":"9.8.3","elite":"9.8.2"}};
</script>
<script src="https://howtofeedaloon.com/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=9.8.3" id="wprm-public-js" data-rocket-defer defer></script>
<script id="feast-public-js-js-extra">
var feastJSData = {"yoastFaqEnabled":"1"};
</script>
<script type="rocketlazyloadscript" data-rocket-src="https://howtofeedaloon.com/wp-content/plugins/feast-plugin/assets/js/dev/feast-public-js.js?ver=13.0.1" id="feast-public-js-js" data-rocket-defer defer></script>
<script id="dpsp-frontend-js-pro-js-extra">
var dpsp_ajax_send_save_this_email = {"ajax_url":"https:\/\/howtofeedaloon.com\/wp-admin\/admin-ajax.php","dpsp_token":"cd744f0b05"};
</script>
<script type="rocketlazyloadscript" id="dpsp-frontend-js-pro-js-before">
var dpsp_pin_button_data = {"pin_description_source":"image_alt_tag","pinterest_pinnable_images":"all_images","pinterest_button_share_behavior":"post_image","post_multiple_hidden_pinterest_images":"yes","lazy_load_compatibility":"yes","pinterest_title":"Grilled Tacos al Pastor","pinterest_description":"Grilled Tacos al Pastor Grilled feature succulent, marinated pork grilled to perfection, served in warm corn tortillas and topped with fresh pineapple, onions, and cilantro.","pinterest_image_url":"https:\/\/howtofeedaloon.com\/wp-content\/uploads\/2025\/05\/Tacos-al-Pastor-1.jpeg"}
</script>
<script async data-noptimize data-cfasync="false" src="https://howtofeedaloon.com/wp-content/plugins/social-pug/assets/dist/front-end-pro.js?ver=2.25.2" id="dpsp-frontend-js-pro-js"></script>
<script id="wprmp-public-js-extra">
var wprmp_public = {"user":"0","endpoints":{"private_notes":"https:\/\/howtofeedaloon.com\/wp-json\/wp-recipe-maker\/v1\/private-notes","user_rating":"https:\/\/howtofeedaloon.com\/wp-json\/wp-recipe-maker\/v1\/user-rating","collections":"https:\/\/howtofeedaloon.com\/wp-json\/wp\/v2\/wprm_collection","collections_helper":"https:\/\/howtofeedaloon.com\/wp-json\/wp-recipe-maker\/v1\/recipe-collections","nutrition":"https:\/\/howtofeedaloon.com\/wp-json\/wp-recipe-maker\/v1\/nutrition"},"settings":{"recipe_template_mode":"modern","features_adjustable_servings":true,"adjustable_servings_url":false,"adjustable_servings_url_param":"servings","adjustable_servings_round_to_decimals":"2","unit_conversion_remember":true,"unit_conversion_temperature":"none","unit_conversion_temperature_precision":"round_5","unit_conversion_system_1_temperature":"F","unit_conversion_system_2_temperature":"C","unit_conversion_advanced_servings_conversion":false,"unit_conversion_system_1_length_unit":"inch","unit_conversion_system_2_length_unit":"cm","fractions_enabled":false,"fractions_use_mixed":true,"fractions_use_symbols":true,"fractions_max_denominator":"8","unit_conversion_system_1_fractions":true,"unit_conversion_system_2_fractions":true,"unit_conversion_enabled":true,"decimal_separator":"point","features_comment_ratings":true,"features_user_ratings":true,"user_ratings_type":"modal","user_ratings_force_comment_scroll_to_smooth":true,"user_ratings_modal_title":"Rate This Recipe","user_ratings_thank_you_title":"Thank You!","user_ratings_thank_you_message_with_comment":"<p>Thank you for voting!<\/p>","user_ratings_problem_message":"<p>There was a problem rating this recipe. Please try again later.<\/p>","user_ratings_force_comment_scroll_to":"","user_ratings_open_url_parameter":"rate","user_ratings_require_comment":true,"user_ratings_require_name":true,"user_ratings_require_email":true,"user_ratings_comment_suggestions_enabled":"never","rating_details_zero":"No ratings yet","rating_details_one":"%average% from 1 vote","rating_details_multiple":"%average% from %votes% votes","rating_details_user_voted":"(Your vote: %user%)","rating_details_user_not_voted":"(Click on the stars to vote!)","servings_changer_display":"tooltip_slider","template_ingredient_list_style":"checkbox","template_instruction_list_style":"decimal","template_color_icon":"#444444","recipe_collections_scroll_to_top":true,"recipe_collections_scroll_to_top_offset":"30"},"timer":{"sound_file":"https:\/\/howtofeedaloon.com\/wp-content\/plugins\/wp-recipe-maker-premium\/assets\/sounds\/alarm.mp3","text":{"start_timer":"Click to Start Timer"},"icons":{"pause":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M9,2H4C3.4,2,3,2.4,3,3v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C10,2.4,9.6,2,9,2z\"\/><path fill=\"#fffefe\" d=\"M20,2h-5c-0.6,0-1,0.4-1,1v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C21,2.4,20.6,2,20,2z\"\/><\/g><\/svg>","play":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M6.6,2.2C6.3,2,5.9,1.9,5.6,2.1C5.2,2.3,5,2.6,5,3v18c0,0.4,0.2,0.7,0.6,0.9C5.7,22,5.8,22,6,22c0.2,0,0.4-0.1,0.6-0.2l12-9c0.3-0.2,0.4-0.5,0.4-0.8s-0.1-0.6-0.4-0.8L6.6,2.2z\"\/><\/g><\/svg>","close":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M22.7,4.3l-3-3c-0.4-0.4-1-0.4-1.4,0L12,7.6L5.7,1.3c-0.4-0.4-1-0.4-1.4,0l-3,3c-0.4,0.4-0.4,1,0,1.4L7.6,12l-6.3,6.3c-0.4,0.4-0.4,1,0,1.4l3,3c0.4,0.4,1,0.4,1.4,0l6.3-6.3l6.3,6.3c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l3-3c0.4-0.4,0.4-1,0-1.4L16.4,12l6.3-6.3C23.1,5.3,23.1,4.7,22.7,4.3z\"\/><\/g><\/svg>"}},"recipe_submission":{"max_file_size":838860800,"text":{"image_size":"The file is too large. Maximum size:"}},"collections":{"default":{"inbox":{"id":0,"name":"Inbox","nbrItems":0,"columns":[{"id":0,"name":"Recipes"}],"groups":[{"id":0,"name":""}],"items":{"0-0":[]},"created":1746827357},"user":[]}},"add_to_collection":{"access":"everyone","behaviour":"inbox","choice":"choose_column_group","placement":"bottom","not_logged_in":"hide","not_logged_in_redirect":"","not_logged_in_tooltip":"","collections":{"inbox":"Inbox","user":[]}},"quick_access_shopping_list":{"access":"everyone"}};
</script>
<script src="https://howtofeedaloon.com/wp-content/plugins/wp-recipe-maker-premium/dist/public-elite.js?ver=9.8.2" id="wprmp-public-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" id="rocket-browser-checker-js-after">
"use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}();
</script>
<script id="rocket-preload-links-js-extra">
var RocketPreloadLinksConfig = {"excludeUris":"\/(?:.+\/)?feed(?:\/(?:.+\/?)?)?$|\/(?:.+\/)?embed\/|\/(index.php\/)?(.*)wp-json(\/.*|$)|\/refer\/|\/go\/|\/recommend\/|\/recommends\/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https:\/\/howtofeedaloon.com","onHoverDelay":"100","rateThrottle":"3"};
</script>
<script type="rocketlazyloadscript" id="rocket-preload-links-js-after">
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());
</script>
<script id="rocket_lazyload_css-js-extra">
var rocket_lazyload_css_data = {"threshold":"300"};
</script>
<script id="rocket_lazyload_css-js-after">
!function o(n,c,a){function u(t,e){if(!c[t]){if(!n[t]){var r="function"==typeof require&&require;if(!e&&r)return r(t,!0);if(s)return s(t,!0);throw(e=new Error("Cannot find module '"+t+"'")).code="MODULE_NOT_FOUND",e}r=c[t]={exports:{}},n[t][0].call(r.exports,function(e){return u(n[t][1][e]||e)},r,r.exports,o,n,c,a)}return c[t].exports}for(var s="function"==typeof require&&require,e=0;e<a.length;e++)u(a[e]);return u}({1:[function(e,t,r){"use strict";{const c="undefined"==typeof rocket_pairs?[]:rocket_pairs,a=(("undefined"==typeof rocket_excluded_pairs?[]:rocket_excluded_pairs).map(t=>{var e=t.selector;document.querySelectorAll(e).forEach(e=>{e.setAttribute("data-rocket-lazy-bg-"+t.hash,"excluded")})}),document.querySelector("#wpr-lazyload-bg-container"));var o=rocket_lazyload_css_data.threshold||300;const u=new IntersectionObserver(e=>{e.forEach(t=>{t.isIntersecting&&c.filter(e=>t.target.matches(e.selector)).map(t=>{var e;t&&((e=document.createElement("style")).textContent=t.style,a.insertAdjacentElement("afterend",e),t.elements.forEach(e=>{u.unobserve(e),e.setAttribute("data-rocket-lazy-bg-"+t.hash,"loaded")}))})})},{rootMargin:o+"px"});function n(){0<(0<arguments.length&&void 0!==arguments[0]?arguments[0]:[]).length&&c.forEach(t=>{try{document.querySelectorAll(t.selector).forEach(e=>{"loaded"!==e.getAttribute("data-rocket-lazy-bg-"+t.hash)&&"excluded"!==e.getAttribute("data-rocket-lazy-bg-"+t.hash)&&(u.observe(e),(t.elements||=[]).push(e))})}catch(e){console.error(e)}})}n(),function(){const r=window.MutationObserver;return function(e,t){if(e&&1===e.nodeType)return(t=new r(t)).observe(e,{attributes:!0,childList:!0,subtree:!0}),t}}()(document.querySelector("body"),n)}},{}]},{},[1]);
</script>
<script type="rocketlazyloadscript" data-rocket-src="https://howtofeedaloon.com/wp-includes/js/comment-reply.min.js?ver=6.7.2" id="comment-reply-js" async data-wp-strategy="async"></script>
<script id="jetpack-stats-js-before">
_stq = window._stq || [];
_stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"59169277\",\"post\":\"42866\",\"tz\":\"-4\",\"srv\":\"howtofeedaloon.com\",\"j\":\"1:14.5\"}") ]);
_stq.push([ "clickTrackerInit", "59169277", "42866" ]);
</script>
<script src="https://stats.wp.com/e-202519.js" id="jetpack-stats-js" defer data-wp-strategy="defer"></script>
<script type="rocketlazyloadscript" defer data-rocket-src="https://howtofeedaloon.com/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1740065316" id="akismet-frontend-js"></script>
<script type="rocketlazyloadscript" data-grow-initializer="">!(function(){window.growMe||((window.growMe=function(e){window.growMe._.push(e);}),(window.growMe._=[]));var e=document.createElement("script");(e.type="text/javascript"),(e.src="https://faves.grow.me/main.js"),(e.defer=!0),e.setAttribute("data-grow-faves-site-id","U2l0ZTpmMzg3MGQ0OC05ZGExLTQ5MjgtOGY3MS1hN2I1ZDgzZDg1NTc=");var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t);})();</script><div id="wprm-popup-modal-user-rating" class="wprm-popup-modal wprm-popup-modal-user-rating" data-type="user-rating" aria-hidden="true">
<div class="wprm-popup-modal__overlay" tabindex="-1">
<div class="wprm-popup-modal__container" role="dialog" aria-modal="true" aria-labelledby="wprm-popup-modal-user-rating-title">
<header class="wprm-popup-modal__header">
<h2 class="wprm-popup-modal__title" id="wprm-popup-modal-user-rating-title">
Rate This Recipe </h2>
<button class="wprm-popup-modal__close" aria-label="Close" data-micromodal-close></button>
</header>
<div class="wprm-popup-modal__content" id="wprm-popup-modal-user-rating-content">
<form id="wprm-user-ratings-modal-stars-form" onsubmit="window.WPRecipeMaker.userRatingModal.submit( this ); return false;">
<div class="wprm-user-ratings-modal-recipe-name"></div>
<div class="wprm-user-ratings-modal-stars-container">
<fieldset class="wprm-user-ratings-modal-stars">
<legend>Your vote:</legend>
<input aria-label="Don't rate this recipe" name="wprm-user-rating-stars" value="0" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="margin-left: -31px !important; width: 34px !important; height: 34px !important;" checked="checked"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
<defs>
<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-0" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
</defs>
<use xlink:href="#wprm-modal-star-empty-0" x="2.5714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-0" x="31.714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-0" x="60.857142857143" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-0" x="90" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-0" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 1 out of 5 stars" name="wprm-user-rating-stars" value="1" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
<defs>
<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-1" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-modal-star-full" id="wprm-modal-star-full-1" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-modal-star-full-1" x="2.5714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-1" x="31.714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-1" x="60.857142857143" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-1" x="90" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-1" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 2 out of 5 stars" name="wprm-user-rating-stars" value="2" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
<defs>
<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-2" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-modal-star-full" id="wprm-modal-star-full-2" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-modal-star-full-2" x="2.5714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-full-2" x="31.714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-2" x="60.857142857143" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-2" x="90" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-2" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 3 out of 5 stars" name="wprm-user-rating-stars" value="3" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
<defs>
<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-3" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-modal-star-full" id="wprm-modal-star-full-3" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-modal-star-full-3" x="2.5714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-full-3" x="31.714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-full-3" x="60.857142857143" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-3" x="90" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-3" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 4 out of 5 stars" name="wprm-user-rating-stars" value="4" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
<defs>
<polygon class="wprm-modal-star-empty" id="wprm-modal-star-empty-4" fill="none" stroke="#FFD700" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-modal-star-full" id="wprm-modal-star-full-4" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-modal-star-full-4" x="2.5714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-full-4" x="31.714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-full-4" x="60.857142857143" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-full-4" x="90" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-empty-4" x="119.14285714286" y="2.5714285714286" />
</svg></span><br><input aria-label="Rate this recipe 5 out of 5 stars" name="wprm-user-rating-stars" value="5" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 34px !important; height: 34px !important;"><span aria-hidden="true" style="width: 170px !important; height: 34px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="97.142857142857px" height="16px" viewBox="0 0 145.71428571429 29.142857142857">
<defs>
<path class="wprm-modal-star-full" id="wprm-modal-star-full-5" fill="#FFD700" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-modal-star-full-5" x="2.5714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-full-5" x="31.714285714286" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-full-5" x="60.857142857143" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-full-5" x="90" y="2.5714285714286" />
<use xlink:href="#wprm-modal-star-full-5" x="119.14285714286" y="2.5714285714286" />
</svg></span> </fieldset>
</div>
<textarea name="wprm-user-rating-comment" class="wprm-user-rating-modal-comment" placeholder="Share your thoughts! What did you like about this recipe?" oninput="window.WPRecipeMaker.userRatingModal.checkFields();" aria-label="Comment"></textarea>
<input type="hidden" name="wprm-user-rating-recipe-id" value="" />
<div class="wprm-user-rating-modal-comment-meta">
<div class="wprm-user-rating-modal-field">
<label for="wprm-user-rating-name">Name *</label>
<input type="text" id="wprm-user-rating-name" name="wprm-user-rating-name" value="" placeholder="" /> </div>
<div class="wprm-user-rating-modal-field">
<label for="wprm-user-rating-email">Email *</label>
<input type="email" id="wprm-user-rating-email" name="wprm-user-rating-email" value="" placeholder="" />
</div> </div>
<footer class="wprm-popup-modal__footer">
<button type="submit" class="wprm-popup-modal__btn wprm-user-rating-modal-submit-comment">Rate and Review Recipe</button>
<div id="wprm-user-rating-modal-errors">
<div id="wprm-user-rating-modal-error-rating">A rating is required</div>
<div id="wprm-user-rating-modal-error-name">A name is required</div>
<div id="wprm-user-rating-modal-error-email">An email is required</div>
</div>
<div id="wprm-user-rating-modal-waiting">
<div class="wprm-loader"></div>
</div>
</footer>
</form>
<div id="wprm-user-ratings-modal-message"></div> </div>
</div>
</div>
</div><script>!function(){"use strict";!function(e){if(-1===e.cookie.indexOf("__adblocker")){e.cookie="__adblocker=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/";var t=new XMLHttpRequest;t.open("GET","https://ads.adthrive.com/abd/abd.js",!0),t.onreadystatechange=function(){if(XMLHttpRequest.DONE===t.readyState)if(200===t.status){var a=e.createElement("script");a.innerHTML=t.responseText,e.getElementsByTagName("head")[0].appendChild(a)}else{var n=new Date;n.setTime(n.getTime()+3e5),e.cookie="__adblocker=true; expires="+n.toUTCString()+"; path=/"}},t.send()}}(document)}();
</script><script type="rocketlazyloadscript">!function(){"use strict";var e;e=document,function(){var t,n;function r(){var t=e.createElement("script");t.src="https://cafemedia-com.videoplayerhub.com/galleryplayer.js",e.head.appendChild(t)}function a(){var t=e.cookie.match("(^|[^;]+)\\s*__adblocker\\s*=\\s*([^;]+)");return t&&t.pop()}function c(){clearInterval(n)}return{init:function(){var e;"true"===(t=a())?r():(e=0,n=setInterval((function(){100!==e&&"false"!==t||c(),"true"===t&&(r(),c()),t=a(),e++}),50))}}}().init()}();
</script><script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://howtofeedaloon.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script>function lazyLoadThumb(e,alt,l){var t='<img data-lazy-src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"><noscript><img src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"></noscript>',a='<button class="play" aria-label="Play Youtube video"></button>';if(l){t=t.replace('data-lazy-','');t=t.replace('loading="lazy"','');t=t.replace(/<noscript>.*?<\/noscript>/g,'');}t=t.replace('alt=""','alt="'+alt+'"');return t.replace("ID",e)+a}function lazyLoadYoutubeIframe(){var e=document.createElement("iframe"),t="ID?autoplay=1";t+=0===this.parentNode.dataset.query.length?"":"&"+this.parentNode.dataset.query;e.setAttribute("src",t.replace("ID",this.parentNode.dataset.src)),e.setAttribute("frameborder","0"),e.setAttribute("allowfullscreen","1"),e.setAttribute("allow","accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"),this.parentNode.parentNode.replaceChild(e,this.parentNode)}document.addEventListener("DOMContentLoaded",function(){var exclusions=[];var e,t,p,u,l,a=document.getElementsByClassName("rll-youtube-player");for(t=0;t<a.length;t++)(e=document.createElement("div")),(u='https://i.ytimg.com/vi/ID/hqdefault.jpg'),(u=u.replace('ID',a[t].dataset.id)),(l=exclusions.some(exclusion=>u.includes(exclusion))),e.setAttribute("data-id",a[t].dataset.id),e.setAttribute("data-query",a[t].dataset.query),e.setAttribute("data-src",a[t].dataset.src),(e.innerHTML=lazyLoadThumb(a[t].dataset.id,a[t].dataset.alt,l)),a[t].appendChild(e),(p=e.querySelector(".play")),(p.onclick=lazyLoadYoutubeIframe)});</script><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"rayId":"93d74a81becf7e2b","version":"2025.4.0-1-g37f21b1","serverTiming":{"name":{"cfExtPri":true,"cfL4":true,"cfSpeedBrain":true,"cfCacheStatus":true}},"token":"e94a53d306d84a1da1436edf74dfcc6c","b":1}' crossorigin="anonymous"></script>
</body></html>
<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1746827358 -->
|