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 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
|
<!DOCTYPE html>
<html lang="en-CA">
<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="1.2.3",this.triggerEvents=["keydown","mousedown","mousemove","touchmove","touchstart","touchend","wheel"],this.userEventHandler=this._triggerListener.bind(this),this.touchStartHandler=this._onTouchStart.bind(this),this.touchMoveHandler=this._onTouchMove.bind(this),this.touchEndHandler=this._onTouchEnd.bind(this),this.clickHandler=this._onClick.bind(this),this.interceptedClicks=[],window.addEventListener("pageshow",t=>{this.persisted=t.persisted}),window.addEventListener("DOMContentLoaded",()=>{this._preconnect3rdParties()}),this.delayedScripts={normal:[],async:[],defer:[]},this.trash=[],this.allJQueries=[]}_addUserInteractionListener(t){if(document.hidden){t._triggerListener();return}this.triggerEvents.forEach(e=>window.addEventListener(e,t.userEventHandler,{passive:!0})),window.addEventListener("touchstart",t.touchStartHandler,{passive:!0}),window.addEventListener("mousedown",t.touchStartHandler),document.addEventListener("visibilitychange",t.userEventHandler)}_removeUserInteractionListener(){this.triggerEvents.forEach(t=>window.removeEventListener(t,this.userEventHandler,{passive:!0})),document.removeEventListener("visibilitychange",this.userEventHandler)}_onTouchStart(t){"HTML"!==t.target.tagName&&(window.addEventListener("touchend",this.touchEndHandler),window.addEventListener("mouseup",this.touchEndHandler),window.addEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.addEventListener("mousemove",this.touchMoveHandler),t.target.addEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"onclick","rocket-onclick"),this._pendingClickStarted())}_onTouchMove(t){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler),t.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"rocket-onclick","onclick"),this._pendingClickFinished()}_onTouchEnd(t){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler)}_onClick(t){t.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"rocket-onclick","onclick"),this.interceptedClicks.push(t),t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),this._pendingClickFinished()}_replayClicks(){window.removeEventListener("touchstart",this.touchStartHandler,{passive:!0}),window.removeEventListener("mousedown",this.touchStartHandler),this.interceptedClicks.forEach(t=>{t.target.dispatchEvent(new MouseEvent("click",{view:t.view,bubbles:!0,cancelable:!0}))})}_waitForPendingClicks(){return new Promise(t=>{this._isClickPending?this._pendingClickFinished=t:t()})}_pendingClickStarted(){this._isClickPending=!0}_pendingClickFinished(){this._isClickPending=!1}_renameDOMAttribute(t,e,r){t.hasAttribute&&t.hasAttribute(e)&&(event.target.setAttribute(r,event.target.getAttribute(e)),event.target.removeAttribute(e))}_triggerListener(){this._removeUserInteractionListener(this),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",this._loadEverythingNow.bind(this)):this._loadEverythingNow()}_preconnect3rdParties(){let t=[];document.querySelectorAll("script[type=rocketlazyloadscript]").forEach(e=>{if(e.hasAttribute("src")){let r=new URL(e.src).origin;r!==location.origin&&t.push({src:r,crossOrigin:e.crossOrigin||"module"===e.getAttribute("data-rocket-type")})}}),t=[...new Map(t.map(t=>[JSON.stringify(t),t])).values()],this._batchInjectResourceHints(t,"preconnect")}async _loadEverythingNow(){this.lastBreath=Date.now(),this._delayEventListeners(this),this._delayJQueryReady(this),this._handleDocumentWrite(),this._registerAllDelayedScripts(),this._preloadAllScripts(),await this._loadScriptsFromList(this.delayedScripts.normal),await this._loadScriptsFromList(this.delayedScripts.defer),await this._loadScriptsFromList(this.delayedScripts.async);try{await this._triggerDOMContentLoaded(),await this._triggerWindowLoad()}catch(t){console.error(t)}window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this._waitForPendingClicks().then(()=>{this._replayClicks()}),this._emptyTrash()}_registerAllDelayedScripts(){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 _transformScript(t){return new Promise((await this._littleBreath(),navigator.userAgent.indexOf("Firefox/")>0||""===navigator.vendor)?e=>{let r=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"),r.setAttribute(e,t.nodeValue))}),t.text&&(r.text=t.text),r.hasAttribute("src")?(r.addEventListener("load",e),r.addEventListener("error",e)):(r.text=t.text,e());try{t.parentNode.replaceChild(r,t)}catch(i){e()}}:async e=>{function r(){t.setAttribute("data-rocket-status","failed"),e()}try{let i=t.getAttribute("data-rocket-type"),n=t.getAttribute("data-rocket-src");t.text,i?(t.type=i,t.removeAttribute("data-rocket-type")):t.removeAttribute("type"),t.addEventListener("load",function r(){t.setAttribute("data-rocket-status","executed"),e()}),t.addEventListener("error",r),n?(t.removeAttribute("data-rocket-src"),t.src=n):t.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(t.text)))}catch(s){r()}})}async _loadScriptsFromList(t){let e=t.shift();return e&&e.isConnected?(await this._transformScript(e),this._loadScriptsFromList(t)):Promise.resolve()}_preloadAllScripts(){this._batchInjectResourceHints([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}_batchInjectResourceHints(t,e){var r=document.createDocumentFragment();t.forEach(t=>{let i=t.getAttribute&&t.getAttribute("data-rocket-src")||t.src;if(i){let n=document.createElement("link");n.href=i,n.rel=e,"preconnect"!==e&&(n.as="script"),t.getAttribute&&"module"===t.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),t.crossOrigin&&(n.crossOrigin=t.crossOrigin),t.integrity&&(n.integrity=t.integrity),r.appendChild(n),this.trash.push(n)}}),document.head.appendChild(r)}_delayEventListeners(t){let e={};function r(t,r){!function t(r){!e[r]&&(e[r]={originalFunctions:{add:r.addEventListener,remove:r.removeEventListener},eventsToRewrite:[]},r.addEventListener=function(){arguments[0]=i(arguments[0]),e[r].originalFunctions.add.apply(r,arguments)},r.removeEventListener=function(){arguments[0]=i(arguments[0]),e[r].originalFunctions.remove.apply(r,arguments)});function i(t){return e[r].eventsToRewrite.indexOf(t)>=0?"rocket-"+t:t}}(t),e[t].eventsToRewrite.push(r)}function i(t,e){let r=t[e];Object.defineProperty(t,e,{get:()=>r||function(){},set(i){t["rocket"+e]=r=i}})}r(document,"DOMContentLoaded"),r(window,"DOMContentLoaded"),r(window,"load"),r(window,"pageshow"),r(document,"readystatechange"),i(document,"onreadystatechange"),i(window,"onload"),i(window,"onpageshow")}_delayJQueryReady(t){let e;function r(r){if(r&&r.fn&&!t.allJQueries.includes(r)){r.fn.ready=r.fn.init.prototype.ready=function(e){return t.domReadyFired?e.bind(document)(r):document.addEventListener("rocket-DOMContentLoaded",()=>e.bind(document)(r)),r([])};let i=r.fn.on;r.fn.on=r.fn.init.prototype.on=function(){if(this[0]===window){function t(t){return t.split(" ").map(t=>"load"===t||0===t.indexOf("load.")?"rocket-jquery-load":t).join(" ")}"string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=t(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach(e=>{let r=arguments[0][e];delete arguments[0][e],arguments[0][t(e)]=r})}return i.apply(this,arguments),this},t.allJQueries.push(r)}e=r}r(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>e,set(t){r(t)}})}async _triggerDOMContentLoaded(){this.domReadyFired=!0,await this._littleBreath(),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),window.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),document.dispatchEvent(new Event("rocket-readystatechange")),await this._littleBreath(),document.rocketonreadystatechange&&document.rocketonreadystatechange()}async _triggerWindowLoad(){await this._littleBreath(),window.dispatchEvent(new Event("rocket-load")),await this._littleBreath(),window.rocketonload&&window.rocketonload(),await this._littleBreath(),this.allJQueries.forEach(t=>t(window).trigger("rocket-jquery-load")),await this._littleBreath();let t=new Event("rocket-pageshow");t.persisted=this.persisted,window.dispatchEvent(t),await this._littleBreath(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}_handleDocumentWrite(){let t=new Map;document.write=document.writeln=function(e){let r=document.currentScript;r||console.error("WPRocket unable to document.write this: "+e);let i=document.createRange(),n=r.parentElement,s=t.get(r);void 0===s&&(s=r.nextSibling,t.set(r,s));let a=document.createDocumentFragment();i.setStart(a,0),a.appendChild(i.createContextualFragment(e)),n.insertBefore(a,s)}}async _littleBreath(){Date.now()-this.lastBreath>45&&(await this._requestAnimFrame(),this.lastBreath=Date.now())}async _requestAnimFrame(){return document.hidden?new Promise(t=>setTimeout(t)):new Promise(t=>requestAnimationFrame(t))}_emptyTrash(){this.trash.forEach(t=>t.remove())}static run(){let t=new RocketLazyLoadScripts;t._addUserInteractionListener(t)}}RocketLazyLoadScripts.run();</script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<!-- Grow Social by Mediavine v.1.20.1 https://marketplace.mediavine.com/grow-social-pro/ -->
<meta property="og:locale" content="en_CA" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Oreo Cheesecake Bites (Mini Cheesecakes with Oreo Crust)" />
<meta property="og:description" content="Absolutely delicious and super easy to make with only 6 ingredients. Oreo crust topped with a smooth and creamy cheesecake filling. The perfect quick and easy dessert recipe that everyone will LOVE!" />
<meta property="og:url" content="https://izzycooking.com/oreo-cheesecake-bites/" />
<meta property="og:site_name" content="IzzyCooking" />
<meta property="og:updated_time" content="2020-07-21T23:32:04+00:00" />
<meta property="article:published_time" content="2023-01-11T10:00:00+00:00" />
<meta property="article:modified_time" content="2020-07-21T23:32:04+00:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Oreo Cheesecake Bites (Mini Cheesecakes with Oreo Crust)" />
<meta name="twitter:description" content="Absolutely delicious and super easy to make with only 6 ingredients. Oreo crust topped with a smooth and creamy cheesecake filling. The perfect quick and easy dessert recipe that everyone will LOVE!" />
<meta property="og:image" content="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-1.jpg" />
<meta name="twitter:image" content="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-1.jpg" />
<meta property="og:image:width" content="600" />
<meta property="og:image:height" content="900" />
<!-- Grow Social by Mediavine v.1.20.1 https://marketplace.mediavine.com/grow-social-pro/ -->
<meta name="pinterest-rich-pin" content="false" />
<!-- This site is optimized with the Yoast SEO plugin v21.3 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Oreo Cheesecake Bites (Mini Cheesecakes with Oreo Crust)</title><style id="rocket-critical-css">fieldset.wprm-comment-ratings-container br{display:none}.wprm-recipe{overflow:hidden;zoom:1;text-align:left;clear:both}.wprm-recipe *{box-sizing:border-box}.wprm-recipe a.wprm-recipe-link{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.wprm-spacer{display:block!important;background:none!important;font-size:0;line-height:0;width:100%;height:10px}.wprm-spacer+.wprm-spacer{display:none!important}.wprm-block-text-normal{font-weight:400;font-style:normal;text-transform:none}.wprm-recipe-link{text-decoration:none}.wprm-spacer{display:block!important;background:none!important;font-size:0;line-height:0;width:100%;height:10px}.wprm-spacer+.wprm-spacer{display:none!important}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,figure,header,main,nav{display:block}a{background-color:transparent}strong{font-weight:bold}img{border:0}svg:not(:root){overflow:hidden}figure{margin:20px 0}button,input,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button{text-transform:none;font-family:sans-serif}button,input[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}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}textarea{overflow:auto}*,input[type="search"]{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.entry:after,.entry-content:after,.nav-primary:after,.site-container:after,.site-header:after,.site-inner:after,.widget:after,.widget-area:after,.wrap:after{clear:both;content:" ";display:table}body{background:#fff;color:#302a2c;font-family:"Libre Baskerville",Georgia,serif;font-size:100%;font-weight:400;letter-spacing:0.02em;line-height:1.8}a{color:#135846;text-decoration:underline}p{margin:5px 0 15px;padding:0}strong{font-weight:600}ul{margin:0;padding:0}h1,h2{font-family:"Lato",Helvetica,sans-serif;letter-spacing:3px;margin:21px 0;padding:0;text-transform:uppercase}h1{font-size:2em}h2{font-size:1.625em}iframe,img{max-width:100%}img{height:auto}input,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;color:#333;font-style:italic;font-weight:300;letter-spacing:0.5px;padding:10px;width:100%}::-moz-placeholder{color:#000}::-webkit-input-placeholder{color:#000}button,input[type="submit"]{background:#302a2c;border:1px solid #302a2c;-webkit-box-shadow:none;box-shadow:none;color:#fff;font-family:"Lato",Helvetica,Arial,sans-serif;font-style:normal;font-weight:300;letter-spacing:0.5px;padding:15px 20px;text-transform:uppercase;width:auto}input[type="submit"]{letter-spacing:2px}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-results-button{display:none}.site-container{margin:0 auto}.site-inner,.wrap{margin:0 auto;max-width:1140px}.site-inner{margin:24px auto;padding:24px 37px}.content{float:right;width:720px}.content-sidebar .content{float:left}.sidebar-primary{float:right;width:300px}.search-form input{clear:none;display:inline;float:left;margin-bottom:0;padding:14px 20px;width:61.8%}.search-form input[type="submit"]{clear:none;float:right;font-weight:400;letter-spacing:2px;padding:14px 20px;width:38.2%}.aligncenter,.aligncenter img{display:block;margin:0 auto 22px}.entry-title{margin-top:21px;line-height:1.2;margin-bottom:15px;text-align:center;overflow-wrap:break-word}h1.entry-title{color:#302a2c;font-style:normal;text-decoration:none}.widgettitle{color:#302a2c;font-weight:400;letter-spacing:2px;margin:0 0 10px;text-align:center;text-transform:uppercase}.screen-reader-text,.screen-reader-shortcut{background:#fff;border:0;clip:rect(0,0,0,0);color:#302a2c;height:1px;overflow:hidden;position:absolute!important;width:1px}.genesis-skip-link li{height:0;list-style:none;width:0}img[data-lazy-src]{opacity:0}img.lazyloaded{opacity:1}.site-header{background-color:#f5f5f5}.site-header .wrap{padding:15px 0}.title-area{display:inline-block;font-family:"Lato",Helvetica,sans-serif;font-weight:400;margin:0;padding:20px 0;text-align:center;width:320px}.site-title{font-size:3em;font-weight:300;letter-spacing:4px;line-height:0.8;margin:0;text-transform:uppercase}.site-title a{color:#302a2c;font-style:normal;text-decoration:none;min-height:50px}.header-full-width .title-area,.header-full-width .site-title{width:100%}.genesis-nav-menu{clear:both;padding:0;text-align:center;width:100%}.genesis-nav-menu .menu-item{display:inline-block;font-family:"Lato",Helvetica,sans-serif;font-weight:400;letter-spacing:2px;line-height:1;margin:0;padding:0;text-align:left;min-height:52px}.genesis-nav-menu a{color:#302a2c;display:block;font-style:normal;padding:20px 25px;position:relative;text-decoration:none;text-transform:uppercase}.menu-item input{min-height:52px}.genesis-nav-menu #feast-search{vertical-align:middle;margin:0;padding:0}.genesis-nav-menu .search-form-input{width:100%;background:#F9F9F9 url(https://izzycooking.com/wp-content/themes/brunchpro-v442/images/search.svg) center right 10px no-repeat;background-size:27px 27px}.genesis-nav-menu .search-form-submit{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;padding:0;position:absolute;width:1px}#feast-search input[type="submit"]{display:none}.nav-primary{margin:0}.entry{margin-bottom:20px;padding:0 0 22px}.entry-content p{margin-bottom:30px}.entry-meta{font-family:"Lato",Helvetica,sans-serif;font-size:0.8em;font-weight:300;letter-spacing:1px;margin:0 auto 5px;text-align:center;text-transform:uppercase}.comment-respond label{display:block;margin-right:12px}.sidebar a{color:#302a2c}@media only screen and (max-width:1200px){.site-inner,.wrap{max-width:960px;overflow:hidden}.site-inner{margin:20px auto}.content{width:720px}.genesis-nav-menu a{padding:16px}.sidebar-primary{width:300px}}@media only screen and (max-width:1023px){.content,.sidebar-primary,.site-inner,.title-area,.wrap{width:100%}.site-inner{padding-left:5%;padding-right:5%}.entry,.site-header{padding:20px 0}.genesis-nav-menu li{float:none}.genesis-nav-menu,.site-header .title-area,.site-title{text-align:center}}@media only screen and (max-width:940px){nav{display:none;position:relative}#genesis-nav-primary{border-bottom:1px solid #9d9d9d}.genesis-nav-menu{border:none}.genesis-nav-menu .menu-item{border-bottom:1px solid #9d9d9d;display:block;position:relative;text-align:left}}@media only screen and (min-width:1023px){.sidebar-primary{font-size:0.8em}.genesis-nav-menu #feast-search{margin:5px;padding:0 5px}}.wp-block-group{box-sizing:border-box}.wp-block-image img{height:auto;max-width:100%;vertical-align:bottom}.wp-block-image img{box-sizing:border-box}.wp-block-image .aligncenter{display:table}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figure{margin:0}ul{box-sizing:border-box}.wp-block-search__button{margin-left:.625em;word-break:normal}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search__input{padding:8px;flex-grow:1;margin-left:0;margin-right:0;min-width:3em;border:1px solid #949494;text-decoration:unset!important}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-text-align-center{text-align:center}.aligncenter{clear:both}.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}figure{margin:0 0 1em}.convertkit-broadcasts-list li time{grid-area:date}.convertkit-broadcasts-list li a{grid-area:subject}.convertkit-broadcasts-pagination li.convertkit-broadcasts-pagination-prev{grid-area:prev;text-align:left}.convertkit-broadcasts-pagination li.convertkit-broadcasts-pagination-next{grid-area:next;text-align:right}#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}.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}.dpsp-networks-btns-wrapper .dpsp-network-btn .dpsp-network-label{padding-right:.5em;padding-left:.5em}.dpsp-networks-btns-wrapper .dpsp-network-btn:after{display:block;clear:both;height:0;content:""}.dpsp-networks-btns-wrapper.dpsp-column-2 li{width:50%}.dpsp-has-spacing .dpsp-networks-btns-wrapper.dpsp-column-2 li{width:49%}.dpsp-networks-btns-wrapper.dpsp-column-2 li:nth-child(2n){margin-right:0}.dpsp-facebook{--networkAccent:#334d87;--networkColor:#3a579a;--networkHover:rgba(51,77,135,0.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-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#3a579a))}.dpsp-pinterest{--networkAccent:#b31e24;--networkColor:#c92228;--networkHover:rgba(179,30,36,0.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-inner>svg{fill:var(--customNetworkColor,var(--networkColor,#c92228))}.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-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-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;align-self:start;flex:0 0 auto}.dpsp-network-icon .dpsp-network-icon-inner svg{position:relative;overflow:visible;width:auto;max-height:14px}.dpsp-network-icon-inner{display:flex;align-items:center;justify-content:center}.dpsp-network-icon-inner{height:36px}.dpsp-button-style-1 .dpsp-network-btn{color:#fff!important}.dpsp-button-style-1 .dpsp-network-btn .dpsp-network-icon:not(.dpsp-network-icon-outlined) .dpsp-network-icon-inner>svg{fill:#fff!important}.simple-social-icons svg[class^="social-"]{display:inline-block;width:1em;height:1em;stroke-width:0;stroke:currentColor;fill:currentColor}.simple-social-icons{overflow:hidden}.simple-social-icons ul{margin:0;padding:0}.simple-social-icons ul li{background:none!important;border:none!important;float:left;list-style-type:none!important;margin:0 6px 12px!important;padding:0!important}.simple-social-icons ul li a{border:none!important;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;display:inline-block;font-style:normal!important;font-variant:normal!important;font-weight:normal!important;height:1em;line-height:1em;text-align:center;text-decoration:none!important;text-transform:none!important;width:1em}.simple-social-icons ul.aligncenter{text-align:center}.simple-social-icons ul.aligncenter li{display:inline-block;float:none}.lwptoc_item{margin-top:2px}.lwptoc_item:first-child{margin-top:0}.lwptoc_itemWrap .lwptoc_itemWrap{margin:2px 0 0 14px}.lwptoc-baseItems .lwptoc_items{font-size:90%}</style>
<meta name="description" content="Absolutely delicious and super easy to make with only 6 ingredients. Oreo crust topped with a smooth and creamy cheesecake filling. The perfect quick and easy dessert recipe that everyone will LOVE!" />
<link rel="canonical" href="https://izzycooking.com/oreo-cheesecake-bites/" />
<meta name="author" content="Izzy" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Izzy" />
<meta name="twitter:label2" content="Est. reading time" />
<meta name="twitter:data2" content="6 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://izzycooking.com/oreo-cheesecake-bites/#article","isPartOf":{"@id":"https://izzycooking.com/oreo-cheesecake-bites/"},"author":{"name":"Izzy","@id":"https://izzycooking.com/#/schema/person/8450e2b3834a38def732945ef6230782"},"headline":"Oreo Cheesecake Bites (Mini Philadelphia Oreo Cheesecake)","datePublished":"2023-01-11T15:00:00+00:00","dateModified":"2020-07-22T03:32:04+00:00","wordCount":1153,"commentCount":48,"publisher":{"@id":"https://izzycooking.com/#organization"},"image":{"@id":"https://izzycooking.com/oreo-cheesecake-bites/#primaryimage"},"thumbnailUrl":"https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-1.jpg","keywords":["cream cheese","eggs","oreo cookies","sour cream","sugar","vanilla extract"],"articleSection":["Dessert"],"inLanguage":"en-CA","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://izzycooking.com/oreo-cheesecake-bites/#respond"]}]},{"@type":"WebPage","@id":"https://izzycooking.com/oreo-cheesecake-bites/","url":"https://izzycooking.com/oreo-cheesecake-bites/","name":"Oreo Cheesecake Bites (Mini Cheesecakes with Oreo Crust)","isPartOf":{"@id":"https://izzycooking.com/#website"},"primaryImageOfPage":{"@id":"https://izzycooking.com/oreo-cheesecake-bites/#primaryimage"},"image":{"@id":"https://izzycooking.com/oreo-cheesecake-bites/#primaryimage"},"thumbnailUrl":"https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-1.jpg","datePublished":"2023-01-11T15:00:00+00:00","dateModified":"2020-07-22T03:32:04+00:00","description":"Absolutely delicious and super easy to make with only 6 ingredients. Oreo crust topped with a smooth and creamy cheesecake filling. The perfect quick and easy dessert recipe that everyone will LOVE!","breadcrumb":{"@id":"https://izzycooking.com/oreo-cheesecake-bites/#breadcrumb"},"inLanguage":"en-CA","potentialAction":[{"@type":"ReadAction","target":["https://izzycooking.com/oreo-cheesecake-bites/"]}]},{"@type":"ImageObject","inLanguage":"en-CA","@id":"https://izzycooking.com/oreo-cheesecake-bites/#primaryimage","url":"https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-1.jpg","contentUrl":"https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-1.jpg","width":600,"height":900,"caption":"Oreo Cheesecake Bites"},{"@type":"BreadcrumbList","@id":"https://izzycooking.com/oreo-cheesecake-bites/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://izzycooking.com/"},{"@type":"ListItem","position":2,"name":"Dessert","item":"https://izzycooking.com/category/dessert/"},{"@type":"ListItem","position":3,"name":"Oreo Cheesecake Bites (Mini Philadelphia Oreo Cheesecake)"}]},{"@type":"WebSite","@id":"https://izzycooking.com/#website","url":"https://izzycooking.com/","name":"IzzyCooking","description":"Easy and delicious dinner, breakfast and dessert recipes!","publisher":{"@id":"https://izzycooking.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://izzycooking.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-CA"},{"@type":"Organization","@id":"https://izzycooking.com/#organization","name":"IzzyCooking","url":"https://izzycooking.com/","logo":{"@type":"ImageObject","inLanguage":"en-CA","@id":"https://izzycooking.com/#/schema/logo/image/","url":"https://izzycooking.com/wp-content/uploads/2021/02/cropped-IzzyCooking-9.png","contentUrl":"https://izzycooking.com/wp-content/uploads/2021/02/cropped-IzzyCooking-9.png","width":640,"height":300,"caption":"IzzyCooking"},"image":{"@id":"https://izzycooking.com/#/schema/logo/image/"}},{"@type":"Person","@id":"https://izzycooking.com/#/schema/person/8450e2b3834a38def732945ef6230782","name":"Izzy","image":{"@type":"ImageObject","inLanguage":"en-CA","@id":"https://izzycooking.com/#/schema/person/image/","url":"https://secure.gravatar.com/avatar/691c43dffaac3bd0a2edb14952e79e95?s=96&d=mm&r=g","contentUrl":"https://secure.gravatar.com/avatar/691c43dffaac3bd0a2edb14952e79e95?s=96&d=mm&r=g","caption":"Izzy"},"description":"I'm Izzy, a food lover and photographer. Here you’ll find a collection of simple recipes that are perfect for busy people. My blog aims to help you make and enjoy delicious and healthy food at home.","url":"https://izzycooking.com/author/izzycooking/"},{"@type":"Recipe","name":"Oreo Cheesecake Bites Recipe (+Video)","author":{"@id":"https://izzycooking.com/#/schema/person/8450e2b3834a38def732945ef6230782"},"description":"Oreo Cheesecake Bites are creamy and soft mini cheesecakes with a delicious oreo crust at the bottom. They are so easy to make and a guaranteed hit at any party.","datePublished":"2023-01-11T10:00:00+00:00","image":["https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image.jpg","https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-500x500.jpg","https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-500x375.jpg","https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-480x270.jpg"],"video":{"name":"Recipe Video: Oreo Cheesecake Bites","description":"These Oreo Cheesecake Bites are creamy and smooth mini cheesecakes with Oreo crust at the bottom. I’ve included some easy tips for you to make the best bite-size Oreo cheesecake cupcakes. A perfect dessert at any party!","thumbnailUrl":"https://mediavine-res.cloudinary.com/image/upload/s--zfdkZ8I6--/c_limit,f_auto,fl_lossy,h_1080,q_auto,w_1920/v1654274714/mkcs5xegjawsqiot3h22.jpg","embedUrl":"https://video.mediavine.com/videos/iuooaiI36.js","contentUrl":"https://mediavine-res.cloudinary.com/video/upload/t_original/v1654274712/iuooaiI36.mp4","uploadDate":"2020-07-12T00:01:46+00:00","duration":"PT67S","@type":"VideoObject"},"recipeYield":["16","16 mini cheesecakes"],"prepTime":"PT10M","cookTime":"PT25M","totalTime":"PT35M","recipeIngredient":["22 Oreo cookies ((Chop 6 of them into small pieces))","16 ounces cream cheese (softened)","1/2 cup granulated sugar","1/2 tsp vanilla extract","2 eggs","1/2 cup sour cream ((or plain Greek yogurt))"],"recipeInstructions":[{"@type":"HowToStep","text":"Preheat oven to 325°F. (Make sure your oven temperature is accurate, as a higher temp can cause the cheesecake to crack.)","name":"Preheat oven to 325°F. (Make sure your oven temperature is accurate, as a higher temp can cause the cheesecake to crack.)","url":"https://izzycooking.com/oreo-cheesecake-bites/#wprm-recipe-94-step-0-0"},{"@type":"HowToStep","text":"Place cupcake paper liners into a muffin tin pan. Add one Oreo cookie into each paper cup. Set aside.","name":"Place cupcake paper liners into a muffin tin pan. Add one Oreo cookie into each paper cup. Set aside.","url":"https://izzycooking.com/oreo-cheesecake-bites/#wprm-recipe-94-step-0-1"},{"@type":"HowToStep","text":"Add softened cream cheese and sugar to a medium mixing bowl. Beat on medium speed using a hand mixer.","name":"Add softened cream cheese and sugar to a medium mixing bowl. Beat on medium speed using a hand mixer.","url":"https://izzycooking.com/oreo-cheesecake-bites/#wprm-recipe-94-step-0-2"},{"@type":"HowToStep","text":"Then add vanilla and eggs. Mixing well until smooth without lumps.","name":"Then add vanilla and eggs. Mixing well until smooth without lumps.","url":"https://izzycooking.com/oreo-cheesecake-bites/#wprm-recipe-94-step-0-3"},{"@type":"HowToStep","text":"Add sour cream, mix until combined. Tap bowl against your countertop a few times to release any large air bubbles.","name":"Add sour cream, mix until combined. Tap bowl against your countertop a few times to release any large air bubbles.","url":"https://izzycooking.com/oreo-cheesecake-bites/#wprm-recipe-94-step-0-4"},{"@type":"HowToStep","text":"Stir in chopped cookies, and mix generally using a spatula. (Be careful not to crush oreos into smaller crumbs.)","name":"Stir in chopped cookies, and mix generally using a spatula. (Be careful not to crush oreos into smaller crumbs.)","url":"https://izzycooking.com/oreo-cheesecake-bites/#wprm-recipe-94-step-0-5"},{"@type":"HowToStep","text":"Spoon the batter on top of the oreo, filling each to almost the top. Note that cheesecake won't rise as much as a regular cupcake.","name":"Spoon the batter on top of the oreo, filling each to almost the top. Note that cheesecake won't rise as much as a regular cupcake.","url":"https://izzycooking.com/oreo-cheesecake-bites/#wprm-recipe-94-step-0-6"},{"@type":"HowToStep","text":"Place in the lower third of the oven and bake for about 20-25 minutes until the edges just start to turn brown. Note that classic cheesecake is supposed to look pale, so you're not looking for golden brown.","name":"Place in the lower third of the oven and bake for about 20-25 minutes until the edges just start to turn brown. Note that classic cheesecake is supposed to look pale, so you're not looking for golden brown.","url":"https://izzycooking.com/oreo-cheesecake-bites/#wprm-recipe-94-step-0-7"},{"@type":"HowToStep","text":"Remove from oven and transfer to cooling racks. ","name":"Remove from oven and transfer to cooling racks. ","url":"https://izzycooking.com/oreo-cheesecake-bites/#wprm-recipe-94-step-0-8"},{"@type":"HowToStep","text":"Chill in the fridge for 4 hours or overnight. Serve and enjoy! (You can store them in the fridge for up to 5 days.)","name":"Chill in the fridge for 4 hours or overnight. Serve and enjoy! (You can store them in the fridge for up to 5 days.)","url":"https://izzycooking.com/oreo-cheesecake-bites/#wprm-recipe-94-step-0-9"}],"aggregateRating":{"@type":"AggregateRating","ratingValue":"4.93","ratingCount":"13"},"recipeCategory":["Dessert"],"recipeCuisine":["American"],"keywords":"mini cheesecakes, oreo cheesecake bites, oreo cheesecake cupcakes","nutrition":{"@type":"NutritionInformation","carbohydrateContent":"19 g","proteinContent":"3 g","fatContent":"15 g","saturatedFatContent":"8 g","cholesterolContent":"55 mg","sodiumContent":"181 mg","fiberContent":"1 g","sugarContent":"14 g","calories":"221 kcal","servingSize":"1 serving"},"@id":"https://izzycooking.com/oreo-cheesecake-bites/#recipe","isPartOf":{"@id":"https://izzycooking.com/oreo-cheesecake-bites/#article"},"mainEntityOfPage":"https://izzycooking.com/oreo-cheesecake-bites/"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel="alternate" type="application/rss+xml" title="IzzyCooking » Feed" href="https://izzycooking.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="IzzyCooking » Comments Feed" href="https://izzycooking.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="IzzyCooking » Oreo Cheesecake Bites (Mini Philadelphia Oreo Cheesecake) Comments Feed" href="https://izzycooking.com/oreo-cheesecake-bites/feed/" />
<link rel='preload' href='https://izzycooking.com/wp-content/plugins/wp-recipe-maker/dist/public-modern.css?ver=8.10.3' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<link rel='preload' href='https://izzycooking.com/wp-content/themes/brunchpro-v442/style.css?ver=4.4.2' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<link rel='preload' href='https://izzycooking.com/wp-includes/css/dist/block-library/style.min.css?ver=6.3.1' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<link rel='preload' href='https://izzycooking.com/wp-content/plugins/convertkit/resources/frontend/css/broadcasts.css?ver=2.2.9' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<link rel='preload' href='https://izzycooking.com/wp-content/plugins/convertkit/resources/frontend/css/button.css?ver=2.2.9' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.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}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<style id='global-styles-inline-css' type='text/css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--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--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, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 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: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
: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;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<style id='feast-global-styles-inline-css' type='text/css'>
.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;
}
}
</style>
<link rel='preload' href='https://izzycooking.com/wp-content/plugins/social-pug/assets/dist/style-frontend-pro.1.20.1.css?ver=1.20.1' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<link rel='preload' href='https://izzycooking.com/wp-content/plugins/wp-recipe-maker-premium/dist/public-pro.css?ver=8.10.1' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<link rel='preload' href='https://izzycooking.com/wp-content/plugins/simple-social-icons/css/style.css?ver=3.0.2' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<link rel='preload' href='https://izzycooking.com/wp-content/plugins/imark-interactive-toolkit/frontend/css/inc-frontend-style.css?ver=2.3.10' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<link rel='preload' href='https://izzycooking.com/wp-content/plugins/imark-interactive-toolkit/frontend/css/imp-frontend-style.css?ver=2.3.10' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://izzycooking.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.0' id='jquery-core-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://izzycooking.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1' id='jquery-migrate-js' defer></script>
<script type='text/javascript' async="async" data-noptimize="1" data-cfasync="false" src='https://scripts.mediavine.com/tags/izzy-cooking.js?ver=6.3.1' id='mv-script-wrapper-js'></script>
<link rel="https://api.w.org/" href="https://izzycooking.com/wp-json/" /><link rel="alternate" type="application/json" href="https://izzycooking.com/wp-json/wp/v2/posts/87" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://izzycooking.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.3.1" />
<link rel='shortlink' href='https://izzycooking.com/?p=87' />
<link rel="alternate" type="application/json+oembed" href="https://izzycooking.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fizzycooking.com%2Foreo-cheesecake-bites%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://izzycooking.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fizzycooking.com%2Foreo-cheesecake-bites%2F&format=xml" />
<style id='feast-blockandfront-styles'>.feast-about-author { background-color: #f2f2f2; color: #32373c; padding: 17px; margin-top: 57px; display: grid; grid-template-columns: 1fr 3fr !important; } .feast-about-author h2 { margin-top: 7px !important;} .feast-about-author img{ border-radius: 50% !important; }aside .feast-about-author { grid-template-columns: 1fr !important; }.wp-block-search .wp-block-search__input { max-width: 100%; }.screen-reader-text { width: 1px; height: 1px; }footer ul li, .site-footer ul li { list-style-type: none; }footer ul li, .site-footer ul li { list-style-type: none; }aside .wp-block-search { display: grid; grid-template-columns: 1fr; margin: 37px 0; } aside .wp-block-search__inside-wrapper { display: grid !important; grid-template-columns: 1fr; } aside input { min-height: 50px; } aside .wp-block-search__label, aside .wp-block-search__button { display: none; } aside p, aside div, aside ul { margin: 17px 0; }@media only screen and (max-width: 600px) { aside .wp-block-search { grid-template-columns: 1fr; } aside input { min-height: 50px; margin-bottom: 17px;} }.feast-button a { border: 2px solid var(--feast-branding-primary-background); padding: 7px 14px; border-radius: 20px; background: var(--feast-branding-primary); color: var(--feast-branding-primary-background); text-decoration: none !important; font-weight: bold; } .feast-button { padding: 27px 7px; }.feast-box-primary { color: var( --feast-branding-primary ) !important; background: var(--feast-branding-primary-background) !important; padding: 17px !important; margin: 17px 0 !important; }.feast-box-secondary { color: var( --feast-branding-secondary ) !important; background: var(--feast-branding-secondary-background) !important; padding: 17px !important; margin: 17px 0 !important; }.feast-box-primary li, .feast-box-secondary li {margin-left: 17px !important; }.feast-checklist li::marker { color: transparent; } .feast-checklist li:before { content: '✓'; margin-right: 17px; }.schema-faq-question { font-size: 1.2em; display: block; margin-bottom: 7px;} .schema-faq-section { margin: 37px 0; }</style>
<style id='feast-modern-branding'>:root { --feast-branding-primary: #399999; --feast-branding-primary-background: #d7efef; --feast-branding-secondary: #000000; --feast-branding-secondary-background: #000000; }</style>
<style type="text/css">
.feast-category-index-list, .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;
}
.feast-category-index-list li, .fsri-list li {
min-height: 150px;
text-align: center;
position: relative;
list-style: none !important;
margin-left: 0 !important;
list-style-type: none !important;
overflow: hidden;
}
.feast-category-index-list li a.title {
text-decoration: none;
}
.feast-category-index-list-overlay .fsci-title {
position: absolute;
top: 88%;
left: 50%;
transform: translate(-50%, -50%);
background: #FFF;
padding: 5px;
color: #333;
font-weight: bold;
border: 2px solid #888;
text-transform: uppercase;
width: 80%;
}
.listing-item:focus-within, .wp-block-search__input:focus {outline: 2px solid #555; }
.listing-item a:focus, .listing-item a:focus .fsri-title, .listing-item a:focus img { opacity: 0.8; outline: none; }
a .fsri-title, a .fsci-title { text-decoration: none; word-break: break-word; }
li.listing-item:before { content: none !important; } /* needs to override theme */
.listing-item { display: grid; } .fsri-rating, .fsri-time { place-self: end center; } /* align time + rating bottom */
.feast-recipe-index .feast-category-link { text-align: right; }
.feast-image-frame, .feast-image-border { border: 3px solid #DDD; }
.feast-image-round, .feast-image-round img { border-radius: 50%; }
.feast-image-shadow { box-shadow: 3px 3px 5px #AAA; }
.feast-line-through { text-decoration: line-through; }
.feast-grid-full, .feast-grid-half, .feast-grid-third, .feast-grid-fourth, .feast-grid-fifth { display: grid; grid-gap: 57px 17px; }
.feast-grid-full { grid-template-columns: 1fr !important; }
.feast-grid-half { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.feast-grid-third { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.feast-grid-fourth { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.feast-grid-fifth { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
@media only screen and (min-width: 600px) {
.feast-category-index-list { grid-template-columns: repeat(4, minmax(0, 1fr) ); }
.feast-desktop-grid-full { grid-template-columns: 1fr !important; }
.feast-desktop-grid-half { grid-template-columns: repeat(2, 1fr) !important; }
.feast-desktop-grid-third { grid-template-columns: repeat(3, 1fr) !important; }
.feast-desktop-grid-fourth { grid-template-columns: repeat(4, 1fr) !important; }
.feast-desktop-grid-fifth { grid-template-columns: repeat(5, 1fr) !important; }
.feast-desktop-grid-sixth { grid-template-columns: repeat(6, 1fr) !important; }
}
@media only screen and (min-width: 1100px) { .full-width-content main.content { width: 1080px; max-width: 1080px; } }
@media only screen and (max-width: 600px) { .entry-content :not(.wp-block-gallery) .wp-block-image { width: 100% !important; }}
@media only screen and (min-width: 1024px) {
.feast-full-width-wrapper { width: 100vw; position: relative; left: 50%; right: 50%; margin: 37px -50vw; background: #F5F5F5; padding: 17px 0; }
.feast-full-width-wrapper .feast-recipe-index { width: 1140px; margin: 0 auto; }
.feast-full-width-wrapper .listing-item { background: #FFF; padding: 17px; }
}
.home main .wp-block-search { margin: 57px 0; padding: 13px; background: #FFF; }
.home main .wp-block-search button { display: none; visibility: hidden; }
.home main .wp-block-search__label { position:absolute; left:-10000px; top:auto; }
.feast-prev-next { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid #CCC; margin: 57px 0; }
.feast-prev-post, .feast-next-post { padding: 37px 17px; border-top: 1px solid #CCC; }
.feast-next-post { text-align: right; }
@media only screen and (min-width: 600px) {
.feast-prev-next { grid-template-columns: 1fr 1fr; border-bottom: none; }
.feast-next-post { border-left: 1px solid #CCC;}
.feast-prev-post, .feast-next-post { padding: 37px; }
}
.has-background { padding: 1.25em 2.375em; margin: 1em 0; }
@media only screen and (max-width: 1023px) {
.content-sidebar .content, .sidebar-primary { float: none; clear: both; }
.has-background { padding: 1em; margin: 1em 0; }
}
hr.has-background { padding: inherit; margin: inherit; }
body { -webkit-animation: none !important; animation: none !important; }
summary { display: list-item; }
.comment-form-cookies-consent > label {
display: inline-block;
margin-left: 30px;
}
@media only screen and (max-width: 600px) { .comment-form-cookies-consent { display: grid; grid-template-columns: 1fr 12fr; } }
.bypostauthor .comment-author-name { color: unset; }
.comment-list article header { overflow: auto; }
.fsri-rating .wprm-recipe-rating { pointer-events: none; }
nav#breadcrumbs { margin: 5px 0 15px; }</style><style type="text/css" id='feastbreadcrumbstylesoverride'>
@media only screen and (max-width: 940px) {
nav#breadcrumbs {
display: block;
}
}
</style><script type="rocketlazyloadscript">
function reveal() {
var reveals = document.querySelectorAll("#imark_newsletter, .not-a-thing");
let bodyElement = document.getElementsByTagName('body')[0];
for (var i = 0; i < reveals.length; i++) {
var windowHeight = window.innerHeight;
var elementTop = reveals[i].getBoundingClientRect().top;
var elementVisible = reveals[i].offsetHeight - 50;
var divID = reveals[i].getAttribute('id');
if (elementTop < windowHeight - elementVisible) {
if(! reveals[i].classList.contains('animate_triggred') ){
bodyElement.classList.add("promote-active");
reveals[i].classList.add("active-promote");
}
}
if ( elementTop < 200 ) {
reveals[i].classList.remove("active-promote");
reveals[i].classList.add("animate_triggred");
bodyElement.classList.remove("promote-active");
}
}
}
var animItem = [];
document.addEventListener("DOMContentLoaded", function(event) {
window.addEventListener("scroll", reveal);
var cookies_disable = '';
if( getCookie('promote_disable') == 'wait' && cookies_disable == '' ) {
var reveals = document.querySelectorAll(".imark_newsletter");
reveals[0].classList.add("animate_triggred");
}
// reveal();
});
window.addEventListener("click", function(){
let bodyElement = document.getElementsByTagName('body')[0];
var reveals = document.querySelectorAll("#imark_newsletter, .not-a-thing");
bodyElement.classList.remove("promote-active");
for (var i = 0; i < reveals.length; i++) {
if( reveals[i].classList.contains('active-promote') ){
reveals[i].classList.add("animate_triggred");
}
if( reveals[i].classList.contains('imark_newsletter') ) {
setCookie( 'promote_disable', 'wait', 1 );
}
}
});
function setCookie( cname, cvalue, exdays ) {
const d = new Date();
d.setTime( d.getTime() + (exdays * 24 * 60 * 60 * 1000));
let expires = "expires="+d.toUTCString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
function getCookie(cname) {
let name = cname + "=";
let ca = document.cookie.split(';');
for(let i = 0; i < ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
</script><style>
.not-a-thing {
padding: 15px;
}
.not-a-thing.active-promote {
position: relative;
z-index: 999999999999;
box-shadow: 0px 0px 2px 2px #fff;
background: #fff;
}
body.promote-disable .not-a-thing {
position: initial;
z-index: initial;
padding: initial;
background: initial;
box-shadow: initial;
}
body.promote-active article.post:before, body.promote-active article.page:before {
content: "";
background: #000;
left: 0;
right: 0;
top: 0;
bottom: 0;
position: fixed;
width: 100%;
height: 100%;
z-index: 99;
opacity: 0.8;
}
</style><style type="text/css" data-source="Grow Social by Mediavine">
@media screen and ( max-width : 720px ) {
.dpsp-content-wrapper.dpsp-hide-on-mobile,
.dpsp-share-text.dpsp-hide-on-mobile,
.dpsp-content-wrapper .dpsp-network-label {
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;
}
.dpsp-content-wrapper.dpsp-size-large .dpsp-network-btn.dpsp-has-label:not(.dpsp-has-count){
max-height: 46px;
}
}
</style><style type="text/css"> .tippy-box[data-theme~="wprm"] { background-color: #333333; color: #FFFFFF; } .tippy-box[data-theme~="wprm"][data-placement^="top"] > .tippy-arrow::before { border-top-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="bottom"] > .tippy-arrow::before { border-bottom-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="left"] > .tippy-arrow::before { border-left-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="right"] > .tippy-arrow::before { border-right-color: #333333; } .tippy-box[data-theme~="wprm"] a { color: #FFFFFF; } .wprm-comment-rating svg { width: 16px !important; height: 16px !important; } img.wprm-comment-rating { width: 80px !important; height: 16px !important; } .wprm-comment-rating svg path { fill: #f5a623; } .wprm-comment-rating svg polygon { stroke: #f5a623; } .wprm-comment-ratings-container svg .wprm-star-full { fill: #f5a623; } .wprm-comment-ratings-container svg .wprm-star-empty { stroke: #f5a623; }</style><style type="text/css">.wprm-glossary-term {color: #5A822B;text-decoration: underline;cursor: help;}</style><style type="text/css">.wprm-recipe-template-snippet-basic {
font-family: inherit; /* wprm_font_family type=font */
font-size: 1em; /* wprm_font_size type=font_size */
text-align: center; /* wprm_text_align type=align */
margin-top: 0px; /* wprm_margin_top type=size */
margin-bottom: 15px; /* wprm_margin_bottom type=size */
}.wprm-recipe-template-snippet-basic-buttons {
font-family: inherit; /* wprm_font_family type=font */
font-size: 0.9em; /* wprm_font_size type=font_size */
text-align: center; /* wprm_text_align type=align */
margin-top: 0px; /* wprm_margin_top type=size */
margin-bottom: 10px; /* wprm_margin_bottom type=size */
}
.wprm-recipe-template-snippet-basic-buttons a {
margin: 5px; /* wprm_margin_button type=size */
margin: 5px; /* wprm_margin_button type=size */
}
.wprm-recipe-template-snippet-basic-buttons a:first-child {
margin-left: 0;
}
.wprm-recipe-template-snippet-basic-buttons a:last-child {
margin-right: 0;
}.wprm-recipe-template-cutout-my-version {
margin: 20px auto;
background-color: #fafafa; /*wprm_background type=color*/
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; /*wprm_main_font_family type=font*/
font-size: 1em; /*wprm_main_font_size type=font_size*/
line-height: 1.5em !important; /*wprm_main_line_height type=font_size*/
color: #333333; /*wprm_main_text type=color*/
max-width: 650px; /*wprm_max_width type=size*/
}
.wprm-recipe-template-cutout-my-version a {
color: #3498db; /*wprm_link type=color*/
}
.wprm-recipe-template-cutout-my-version p, .wprm-recipe-template-cutout-my-version li {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; /*wprm_main_font_family type=font*/
font-size: 1em !important;
line-height: 1.5em !important; /*wprm_main_line_height type=font_size*/
}
.wprm-recipe-template-cutout-my-version li {
margin: 0 0 0 32px !important;
padding: 0 !important;
}
.rtl .wprm-recipe-template-cutout-my-version li {
margin: 0 32px 0 0 !important;
}
.wprm-recipe-template-cutout-my-version ol, .wprm-recipe-template-cutout-my-version ul {
margin: 0 !important;
padding: 0 !important;
}
.wprm-recipe-template-cutout-my-version br {
display: none;
}
.wprm-recipe-template-cutout-my-version .wprm-recipe-name,
.wprm-recipe-template-cutout-my-version .wprm-recipe-header {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; /*wprm_header_font_family type=font*/
color: #212121; /*wprm_header_text type=color*/
line-height: 1.3em; /*wprm_header_line_height type=font_size*/
}
.wprm-recipe-template-cutout-my-version h1,
.wprm-recipe-template-cutout-my-version h2,
.wprm-recipe-template-cutout-my-version h3,
.wprm-recipe-template-cutout-my-version h4,
.wprm-recipe-template-cutout-my-version h5,
.wprm-recipe-template-cutout-my-version h6 {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; /*wprm_header_font_family type=font*/
color: #212121; /*wprm_header_text type=color*/
line-height: 1.3em; /*wprm_header_line_height type=font_size*/
margin: 0 !important;
padding: 0 !important;
}
.wprm-recipe-template-cutout-my-version .wprm-recipe-header {
margin-top: 1.2em !important;
}
.wprm-recipe-template-cutout-my-version h1 {
font-size: 2em; /*wprm_h1_size type=font_size*/
}
.wprm-recipe-template-cutout-my-version h2 {
font-size: 1.8em; /*wprm_h2_size type=font_size*/
}
.wprm-recipe-template-cutout-my-version h3 {
font-size: 1.2em; /*wprm_h3_size type=font_size*/
}
.wprm-recipe-template-cutout-my-version h4 {
font-size: 1em; /*wprm_h4_size type=font_size*/
}
.wprm-recipe-template-cutout-my-version h5 {
font-size: 1em; /*wprm_h5_size type=font_size*/
}
.wprm-recipe-template-cutout-my-version h6 {
font-size: 1em; /*wprm_h6_size type=font_size*/
}.wprm-recipe-template-cutout-my-version {
position: relative;
border-style: solid; /*wprm_border_style type=border*/
border-width: 1px; /*wprm_border_width type=size*/
border-color: #aaaaaa; /*wprm_border type=color*/
border-radius: 10px; /*wprm_border_radius type=size*/
margin: 120px auto 20px auto;
overflow: visible;
}
.wprm-recipe-template-cutout-my-version-container {
overflow: hidden;
padding: 0 10px 10px 10px;
border: 0;
border-radius: 7px; /*wprm_inner_border_radius type=size*/
}
.wprm-recipe-template-cutout-my-version .wprm-recipe-image {
position: absolute;
margin-top: -100px;
margin-left: -100px;
left: 50%;
}
.wprm-recipe-template-cutout-my-version-header {
margin: 0 -10px 10px -10px;
padding: 110px 10px 10px 10px;
text-align: center;
background-color: #053f5e; /*wprm_top_header_background type=color*/
color: #ffffff; /*wprm_top_header_text type=color*/
}
.wprm-recipe-template-cutout-my-version-header a {
color: #3498db; /*wprm_top_header_link type=color*/
}
.wprm-recipe-template-cutout-my-version-header .wprm-recipe-name {
color: #ffffff; /*wprm_top_header_text type=color*/
}.wprm-recipe-template-classic {
margin: 20px auto;
background-color: #fafafa; /* wprm_background type=color */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; /* wprm_main_font_family type=font */
font-size: 0.9em; /* wprm_main_font_size type=font_size */
line-height: 1.5em; /* wprm_main_line_height type=font_size */
color: #333333; /* wprm_main_text type=color */
max-width: 650px; /* wprm_max_width type=size */
}
.wprm-recipe-template-classic a {
color: #3498db; /* wprm_link type=color */
}
.wprm-recipe-template-classic p, .wprm-recipe-template-classic li {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; /* wprm_main_font_family type=font */
font-size: 1em !important;
line-height: 1.5em !important; /* wprm_main_line_height type=font_size */
}
.wprm-recipe-template-classic li {
margin: 0 0 0 32px !important;
padding: 0 !important;
}
.rtl .wprm-recipe-template-classic li {
margin: 0 32px 0 0 !important;
}
.wprm-recipe-template-classic ol, .wprm-recipe-template-classic ul {
margin: 0 !important;
padding: 0 !important;
}
.wprm-recipe-template-classic br {
display: none;
}
.wprm-recipe-template-classic .wprm-recipe-name,
.wprm-recipe-template-classic .wprm-recipe-header {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; /* wprm_header_font_family type=font */
color: #000000; /* wprm_header_text type=color */
line-height: 1.3em; /* wprm_header_line_height type=font_size */
}
.wprm-recipe-template-classic h1,
.wprm-recipe-template-classic h2,
.wprm-recipe-template-classic h3,
.wprm-recipe-template-classic h4,
.wprm-recipe-template-classic h5,
.wprm-recipe-template-classic h6 {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; /* wprm_header_font_family type=font */
color: #212121; /* wprm_header_text type=color */
line-height: 1.3em; /* wprm_header_line_height type=font_size */
margin: 0 !important;
padding: 0 !important;
}
.wprm-recipe-template-classic .wprm-recipe-header {
margin-top: 1.2em !important;
}
.wprm-recipe-template-classic h1 {
font-size: 2em; /* wprm_h1_size type=font_size */
}
.wprm-recipe-template-classic h2 {
font-size: 1.8em; /* wprm_h2_size type=font_size */
}
.wprm-recipe-template-classic h3 {
font-size: 1.2em; /* wprm_h3_size type=font_size */
}
.wprm-recipe-template-classic h4 {
font-size: 1em; /* wprm_h4_size type=font_size */
}
.wprm-recipe-template-classic h5 {
font-size: 1em; /* wprm_h5_size type=font_size */
}
.wprm-recipe-template-classic h6 {
font-size: 1em; /* wprm_h6_size type=font_size */
}.wprm-recipe-template-classic {
border-top-style: solid; /* wprm_border_style type=border */
border-top-width: 1px; /* wprm_border_top_width type=size */
border-top-color: #aaaaaa; /* wprm_border_top type=color */
padding: 10px;
}</style><style>p#disclosure { font-size: 80%; color: #ACAAAA; text-align: center; }</style><link rel="pingback" href="https://izzycooking.com/xmlrpc.php" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120201187-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-120201187-1', { 'anonymize_ip': true });
setTimeout("gtag('event', 'adjusted bounce rate', {'event_label':'10 seconds'})",20000 );
</script>
<meta name="p:domain_verify" content="623c3e48c22c2fa5b0b9bcc395ca17a8"/> <style>
/* Add animation (Chrome, Safari, Opera) */
@-webkit-keyframes openmenu {
from {left:-100px;opacity: 0;}
to {left:0px;opacity:1;}
}
@-webkit-keyframes closebutton {
0% {opacity: 0;}
100% {opacity: 1;}
}
/* Add animation (Standard syntax) */
@keyframes openmenu {
from {left:-100px;opacity: 0;}
to {left:0px;opacity:1;}
}
@keyframes closebutton {
0% {opacity: 0;}
100% {opacity: 1;}
}
.mmmadminlinks {
position: absolute;
left: 20px;
top: 0;
width: 200px;
line-height: 25px;
text-align: left;
display: none;
}
@media only screen and ( min-width: 1000px ) {
.mmmadminlinks { display: block; }
}
/* Ensure the jump link is below the fixed nav */
html {
scroll-padding-top: 90px;
}
/* The mmm's background */
.feastmobilemenu-background {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
}
/* Display the mmm when targeted */
.feastmobilemenu-background:target {
display: table;
position: fixed;
}
/* The mmm box */
.mmm-dialog {
display: table-cell;
vertical-align: top;
font-size: 20px;
}
/* The mmm's content */
.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 #777 solid;
border-bottom: 1px #777 solid;
text-align: justify;
width: 320px;
height: 90%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
/* Add animation */
-webkit-animation-name: openmenu; /* Chrome, Safari, Opera */
-webkit-animation-duration: 0.6s; /* Chrome, Safari, Opera */
animation-name: openmenu;
animation-duration: 0.6s;
}
.mmm-content li {
list-style: none;
}
#menu-feast-modern-mobile-menu li {
min-height: 50px;
margin-left: 5px;
list-style: none;
}
#menu-feast-modern-mobile-menu li a {
color: inherit;
text-decoration: inherit;
}
/* The button used to close the mmm */
.closebtn {
text-decoration: none;
float: right;
margin-right: 10px;
font-size: 50px;
font-weight: bold;
color: #333;
z-index:1001;
top: 0;
position: fixed;
left: 270px;
-webkit-animation-name: closebutton; /* Chrome, Safari, Opera */
-webkit-animation-duration: 1.5s; /* Chrome, Safari, Opera */
animation-name: closebutton;
animation-duration: 1.5s;
}
.closebtn:hover,
.closebtn:focus {
color: #555;
cursor: pointer;
}
@media (prefers-reduced-motion) { /* accessibility animation fix */
.mmm-dialog .mmm-content, .closebtn {
animation: none !important;
}
}
.mmmheader {
font-size: 25px;
color: #FFF;
height: 80px;
display: flex;
justify-content: space-between;
}
#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;
}
#feast-social .simple-social-icons {
list-style: none;
margin: 0 !important;
}
.feastmobilenavbar {
position: fixed;
top: 0;
left: 0;
z-index: 998;
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; }
.admin-bar .feastmobilenavbar {
top: 32px;
}
@media screen and (max-width:782px) {
.admin-bar .feastmobilenavbar {
top: 0;
position: sticky;
}
.admin-bar .site-container, .admin-bar .body-template-content {
margin-top: 0;
}
}
.feastmobilenavbar a img {
margin-bottom: inherit !important;
}
.feastmenutoggle, .feastsearchtoggle, .feastsubscribebutton {
display: flex;
align-items: center;
justify-items: center;
justify-content: center;
}
.feastsearchtoggle svg, .feastmenutoggle svg {
width: 30px;
height: 30px;
padding: 10px;
box-sizing: content-box;
color: black;
}
.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 5;
}
.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; }
.feastmobilenavbar .feastmenutoggle { display: none; } /* hide menu toggle */
.feastmobilenavbar { grid-template-columns: 1fr 3fr 1fr 50px !important; } /* rearrange grid for desktop */
.feastmenulogo { grid-column-end: span 1 !important; }
.desktop-inline-modern-menu ul {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
height: 70px;
overflow: hidden;
margin: 0 17px;
}
.desktop-inline-modern-menu ul li {
display: flex;
justify-content: center;
align-items: center;
min-height: 70px;
}
.desktop-inline-modern-menu ul li:nth-child(n+6) { display: none; }
.modern-menu-desktop-social .simple-social-icons li:nth-child(n+4), .modern-menu-desktop-social .widgettitle { display: none; }
.modern-menu-desktop-social { display: flex !important; justify-content: center; align-items: center; }
.feastmobilenavbar a { color: #000; text-decoration: none; }
} /* end desktop query */
/* end testing */
@media only screen and ( max-width: 1199px ) {
.feastmenulogo {grid-column-end: span 5; }
.feastsubscribebutton { grid-column-end: span 2; }
}
@media only screen and (max-width: 359px) { /* 320px fix */
.feastmobilenavbar {
grid-template-columns: repeat(6, minmax(50px, 1fr));
}
.feastmenulogo {grid-column-end: span 4; } }
header.site-header, .nav-primary {
display: none !important;
visibility: hidden;
}
.site-container, .body-template-content {
margin-top: 80px; /* prevents menu overlapping content */
}
@media only screen and ( min-width: 1200px ) {
.feastmobilenavbar {
width: 100%;
left: 0;
padding-left: calc(50% - 550px);
padding-right: calc(50% - 550px);
}
}
@media print {
.feastmobilenavbar { position: static; }
}
</style>
<style id='feast-system-fonts'>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;}
h1,h2,h3,h4,h5,h6 {font-family:-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;}
</style>
<style id="feast-edit-font-sizes">body { font-size: 18px; }</style><link rel="icon" href="https://izzycooking.com/wp-content/uploads/2021/02/cropped-Copy-of-IzzyCooking-3-1-32x32.png" sizes="32x32" />
<link rel="icon" href="https://izzycooking.com/wp-content/uploads/2021/02/cropped-Copy-of-IzzyCooking-3-1-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://izzycooking.com/wp-content/uploads/2021/02/cropped-Copy-of-IzzyCooking-3-1-180x180.png" />
<meta name="msapplication-TileImage" content="https://izzycooking.com/wp-content/uploads/2021/02/cropped-Copy-of-IzzyCooking-3-1-270x270.png" />
<style type="text/css" id="wp-custom-css">
.desktop-inline-modern-menu ul {
display: grid;
grid-template-columns: 1fr 1fr 1fr 3fr;
height: 70px;
overflow: hidden;
margin: 0 17px;
}
.desktop-inline-modern-menu ul a {
color:#399999;
font-weight:bold;
text-transform:uppercase;
letter-spacing:0;
font-size:14px;
}
/* Mobile text headings */
@media only screen and (max-width: 768px) {
.entry-content h2 {
font-size: 21px;
line-height: 1.5;
}
.entry-content h3 {
font-size: 19px;
line-height: 1.5;
}
}
.wprm-recipe.wprm-recipe-snippet {
text-align: center;
}
/* mediavine */
@media only screen and (min-width: 1024px) {
body:not(.home).content-sidebar main.content {
max-width: calc(100% - 330px) !important;
}
}
@media only screen and (max-width: 359px) {
.site-inner {
padding-left: 10px !important;
padding-right: 10px !important;
}
.wprm-recipe.wprm-recipe-template-cutout-my-version {
border-left: 0px !important;
border-right: 0px !important;
}
.wprm-recipe-template-cutout-my-version-container {
padding-left: 0px !important;
padding-right: 0px !important;
}
}
</style>
<style id="feast-homepage-styling-87">
</style>
<noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript><script type="rocketlazyloadscript">
/*! loadCSS rel=preload polyfill. [c]2017 Filament Group, Inc. MIT License */
(function(w){"use strict";if(!w.loadCSS){w.loadCSS=function(){}}
var rp=loadCSS.relpreload={};rp.support=(function(){var ret;try{ret=w.document.createElement("link").relList.supports("preload")}catch(e){ret=!1}
return function(){return ret}})();rp.bindMediaToggle=function(link){var finalMedia=link.media||"all";function enableStylesheet(){link.media=finalMedia}
if(link.addEventListener){link.addEventListener("load",enableStylesheet)}else if(link.attachEvent){link.attachEvent("onload",enableStylesheet)}
setTimeout(function(){link.rel="stylesheet";link.media="only x"});setTimeout(enableStylesheet,3000)};rp.poly=function(){if(rp.support()){return}
var links=w.document.getElementsByTagName("link");for(var i=0;i<links.length;i++){var link=links[i];if(link.rel==="preload"&&link.getAttribute("as")==="style"&&!link.getAttribute("data-loadcss")){link.setAttribute("data-loadcss",!0);rp.bindMediaToggle(link)}}};if(!rp.support()){rp.poly();var run=w.setInterval(rp.poly,500);if(w.addEventListener){w.addEventListener("load",function(){rp.poly();w.clearInterval(run)})}else if(w.attachEvent){w.attachEvent("onload",function(){rp.poly();w.clearInterval(run)})}}
if(typeof exports!=="undefined"){exports.loadCSS=loadCSS}
else{w.loadCSS=loadCSS}}(typeof global!=="undefined"?global:this))
</script></head>
<body class="post-template-default single single-post postid-87 single-format-standard feast-plugin header-full-width content-sidebar genesis-breadcrumbs-visible genesis-footer-widgets-hidden brunch-pro promote-enable-check"><div class="site-container"><ul class="genesis-skip-link"><li><a href="#genesis-nav-primary" class="screen-reader-shortcut"> Skip to primary navigation</a></li><li><a href="#genesis-content" class="screen-reader-shortcut"> Skip to main content</a></li><li><a href="#genesis-sidebar-primary" class="screen-reader-shortcut"> Skip to primary sidebar</a></li></ul><nav class="nav-primary" aria-label="Main" id="genesis-nav-primary"><div class="wrap"><ul id="menu-feast-modern-mobile-menu" class="menu genesis-nav-menu menu-primary"><li id="menu-item-29476" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-29476"><a href="https://izzycooking.com/"><span >Home</span></a></li>
<li id="menu-item-29477" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-29477"><a href="https://izzycooking.com/category/sous-vide/"><span >Sous Vide</span></a></li>
<li id="menu-item-29478" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-29478"><a href="https://izzycooking.com/category/air-fryer/"><span >Air Fryer</span></a></li>
<li id="menu-item-29479" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-29479"><a href="https://izzycooking.com/category/starbucks-copycat-drinks/"><span >Starbucks Copycat Drinks</span></a></li>
<li id="feast-search" class="feast-search menu-item"><form class="search-form" method="get" action="https://izzycooking.com/" role="search"><label class="search-form-label screen-reader-text" for="searchform-1">Search</label><input class="search-form-input" type="search" name="s" id="searchform-1" placeholder="Search"><input class="search-form-submit" type="submit" value="Search"><meta content="https://izzycooking.com/?s={s}"></form></li></ul></div></nav><header class="site-header"><div class="wrap"><div class="title-area"><p class="site-title"><a href="https://izzycooking.com/">IzzyCooking</a></p></div></div></header><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://izzycooking.com"><img src="https://izzycooking.com/wp-content/uploads/2022/04/izzy-logo-200.png" srcset="https://izzycooking.com/wp-content/uploads/2022/04/izzy-logo-400.png 2x" alt="go to homepage" data-skip-lazy data-pin-nopin="true" height="70" width="200" /></a></div><nav class='desktop-inline-modern-menu'><ul id="menu-feast-modern-mobile-menu-1" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-29476"><a href="https://izzycooking.com/">Home</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-29477"><a href="https://izzycooking.com/category/sous-vide/">Sous Vide</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-29478"><a href="https://izzycooking.com/category/air-fryer/">Air Fryer</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-29479"><a href="https://izzycooking.com/category/starbucks-copycat-drinks/">Starbucks Copycat Drinks</a></li>
</ul></nav><div class='modern-menu-desktop-social'><div id="feast-social"><li id="simple-social-icons-2" class="widget simple-social-icons"><h2 class="widgettitle">Let’s Connect!</h2>
<ul class="aligncenter"><li class="ssi-email"><a data-wpel-link="ignore" href="/cdn-cgi/l/email-protection#aac38c899b989891d0d38c899a9393918c899b9b9b918c899b9b9b918c899b9a9d918c899b9a9f91c48c899b9a9991d88c899b9a9b91c98c899b9a9f91dacfd98c899a9c9e91cd8c899b9a9391cb8c899b9a9f91c68c899a9e9c918c899a939391c58c899b9a9391"><svg role="img" class="social-email" aria-labelledby="social-email-2"><title id="social-email-2">Email</title><use xlink:data-wpel-link="ignore" href="https://izzycooking.com/wp-content/plugins/simple-social-icons/symbol-defs.svg#social-email"></use></svg></a></li><li class="ssi-instagram"><a data-wpel-link="ignore" href="https://www.instagram.com/izzycookingofficial/" target="_blank" rel="noopener noreferrer"><svg role="img" class="social-instagram" aria-labelledby="social-instagram-2"><title id="social-instagram-2">Instagram</title><use xlink:data-wpel-link="ignore" href="https://izzycooking.com/wp-content/plugins/simple-social-icons/symbol-defs.svg#social-instagram"></use></svg></a></li><li class="ssi-pinterest"><a data-wpel-link="ignore" href="https://www.pinterest.com/izzycooking/" target="_blank" rel="noopener noreferrer"><svg role="img" class="social-pinterest" aria-labelledby="social-pinterest-2"><title id="social-pinterest-2">Pinterest</title><use xlink:data-wpel-link="ignore" href="https://izzycooking.com/wp-content/plugins/simple-social-icons/symbol-defs.svg#social-pinterest"></use></svg></a></li><li class="ssi-youtube"><a data-wpel-link="ignore" href="https://www.youtube.com/channel/UC2yZH-54952ogAkHA709z2w" target="_blank" rel="noopener noreferrer"><svg role="img" class="social-youtube" aria-labelledby="social-youtube-2"><title id="social-youtube-2">YouTube</title><use xlink:data-wpel-link="ignore" href="https://izzycooking.com/wp-content/plugins/simple-social-icons/symbol-defs.svg#social-youtube"></use></svg></a></li></ul></li>
</div></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://izzycooking.com"><img width="200" height="70" id="mmmlogo" src="https://izzycooking.com/wp-content/uploads/2022/04/izzy-logo-200.png" srcset="https://izzycooking.com/wp-content/uploads/2022/04/izzy-logo-400.png 2x" alt="Homepage link" data-pin-nopin="true" /></a><div id="feast-mobile-search"><form class="search-form" method="get" action="https://izzycooking.com/" role="search"><label class="search-form-label screen-reader-text" for="searchform-2">Search</label><input class="search-form-input" type="search" name="s" id="searchform-2" placeholder="Search"><input class="search-form-submit" type="submit" value="Search"><meta content="https://izzycooking.com/?s={s}"></form></div><ul id="menu-feast-modern-mobile-menu-2" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-29476"><a href="https://izzycooking.com/">Home</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-29477"><a href="https://izzycooking.com/category/sous-vide/">Sous Vide</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-29478"><a href="https://izzycooking.com/category/air-fryer/">Air Fryer</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-29479"><a href="https://izzycooking.com/category/starbucks-copycat-drinks/">Starbucks Copycat Drinks</a></li>
</ul><div id="feast-mobile-menu-social-icons"><div id="feast-social"><li id="simple-social-icons-2" class="widget simple-social-icons"><h2 class="widgettitle">Let’s Connect!</h2>
<ul class="aligncenter"><li class="ssi-email"><a data-wpel-link="ignore" href="/cdn-cgi/l/email-protection#630a194540525151581a00454052525258454052525258080a45405252535845405253505845405252575806000a454052525158064540525256584540535557584540525350580e4540535a5458454052535658454052535b584d4540535a5a580c454052535a58"><svg role="img" class="social-email" aria-labelledby="social-email-2"><title id="social-email-2">Email</title><use xlink:data-wpel-link="ignore" href="https://izzycooking.com/wp-content/plugins/simple-social-icons/symbol-defs.svg#social-email"></use></svg></a></li><li class="ssi-instagram"><a data-wpel-link="ignore" href="https://www.instagram.com/izzycookingofficial/" target="_blank" rel="noopener noreferrer"><svg role="img" class="social-instagram" aria-labelledby="social-instagram-2"><title id="social-instagram-2">Instagram</title><use xlink:data-wpel-link="ignore" href="https://izzycooking.com/wp-content/plugins/simple-social-icons/symbol-defs.svg#social-instagram"></use></svg></a></li><li class="ssi-pinterest"><a data-wpel-link="ignore" href="https://www.pinterest.com/izzycooking/" target="_blank" rel="noopener noreferrer"><svg role="img" class="social-pinterest" aria-labelledby="social-pinterest-2"><title id="social-pinterest-2">Pinterest</title><use xlink:data-wpel-link="ignore" href="https://izzycooking.com/wp-content/plugins/simple-social-icons/symbol-defs.svg#social-pinterest"></use></svg></a></li><li class="ssi-youtube"><a data-wpel-link="ignore" href="https://www.youtube.com/channel/UC2yZH-54952ogAkHA709z2w" target="_blank" rel="noopener noreferrer"><svg role="img" class="social-youtube" aria-labelledby="social-youtube-2"><title id="social-youtube-2">YouTube</title><use xlink:data-wpel-link="ignore" href="https://izzycooking.com/wp-content/plugins/simple-social-icons/symbol-defs.svg#social-youtube"></use></svg></a></li></ul></li>
</div></div><a href="#" class="closebtn">×</a></div></div></div><div class="site-inner"><div class="content-sidebar-wrap"><main class="content" id="genesis-content"><nav id="breadcrumbs" aria-label="breadcrumbs"><span><span><a href="https://izzycooking.com/">Home</a></span> » <span><a href="https://izzycooking.com/category/dessert/">Dessert</a></span></span></nav><p class="entry-meta"><time class="entry-time">01/11/2023</time> </p><article class="post-87 post type-post status-publish format-standard has-post-thumbnail category-dessert tag-cream-cheese tag-eggs tag-oreo-cookies tag-sour-cream tag-sugar tag-vanilla-extract mv-content-wrapper grow-content-body entry" aria-label="Oreo Cheesecake Bites (Mini Philadelphia Oreo Cheesecake)"><header class="entry-header"><h1 class="entry-title">Oreo Cheesecake Bites (Mini Philadelphia Oreo Cheesecake)</h1>
</header><div id="dpsp-content-top" class="dpsp-content-wrapper dpsp-shape-rectangular dpsp-size-small dpsp-has-spacing dpsp-hide-on-mobile dpsp-button-style-1" style="min-height:32px;position:relative">
<ul class="dpsp-networks-btns-wrapper dpsp-networks-btns-share dpsp-networks-btns-content dpsp-column-2 " 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%2Fizzycooking.com%2Foreo-cheesecake-bites%2F&t=Oreo%20Cheesecake%20Bites%20%28Mini%20Cheesecakes%20with%20Oreo%20Crust%29" class="dpsp-network-btn dpsp-facebook dpsp-first dpsp-has-label" target="_blank" aria-label="Share on Facebook" title="Share on Facebook" 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">Share</span></a></li>
<li class="dpsp-network-list-item dpsp-network-list-item-pinterest" style="float:left">
<button data-href="#" class="dpsp-network-btn dpsp-pinterest dpsp-last dpsp-has-label" 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">Pin</span></button></li>
</ul></div>
<div class="entry-content"><div class="wprm-recipe wprm-recipe-snippet wprm-recipe-template-snippet-basic"><a href="#recipe" data-recipe="94" style="color: #333333;" class="wprm-recipe-jump wprm-recipe-link wprm-jump-to-recipe-shortcode wprm-block-text-normal">Jump to Recipe</a> - <a href="https://izzycooking.com/wprm_print/94" style="color: #333333;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-normal" data-recipe-id="94" data-template="" target="_blank" rel="nofollow">Print Recipe</a></div>
<p><em>These<strong> Oreo Cheesecake Bites</strong> are creamy and smooth mini Philadelphia cheesecakes with Oreo crust at the bottom. Made with only 6 ingredients and about 30 minutes, you’ll have a perfect cupcake dessert for any party! </em></p>
<figure class="wp-block-image"><img decoding="async" fetchpriority="high" width="683" height="1024" src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-1-683x1024.jpg" alt="The most incredible Oreo Cheesecake Bites – creamy and smooth mini cheesecakes with Oreo crust at the bottom. I’ve included the detailed tips for you to make the best bite-size Oreo cheesecake cupcakes and they will be a perfect dessert at any party! #OreoCheesecakeBites #OreoCheesecakeCupcakes" data-skip-lazy class="wp-image-5952" srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-1-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-1-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-1-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-1.jpg 1200w" sizes="(max-width: 683px) 100vw, 683px"></figure><p id="disclosure"><i>This post may contain affiliate links. Please read my <a href="https://izzycooking.com/privacy-policy/">disclosure policy</a>.</i></p>
<p><strong><em>Featured on <a href="https://izzycooking.com/fancy-desserts/">22 Fancy Desserts</a></em></strong></p>
<p>I am a big fan of cheesecake desserts and have shared lots of cheesecake recipes with you on my blog, from <a href="https://izzycooking.com/oreo-cheesecake/">Oreo Cheesecake</a> to <a href="https://izzycooking.com/no-bake-cheesecake-bites/">No Bake Cheesecake Bites</a>. But this mini Oreo cheesecake recipe is definitely my favorite! Individual cheesecakes each has Oreo crust at the bottom and baked with cream cheese and sour cream mixture.</p>
<p class="has-background" style="background-color:#d6ecfa">I have tested different ratios among ingredients and baked them at different temperatures. This recipe is a winner! <strong>Baking your mini Oreo cheesecake at a low temperature is the secret to the perfect and fluffy cheesecake cups.</strong></p>
<div class="lwptoc lwptoc-baseItems lwptoc-inherit" data-smooth-scroll="1" data-smooth-scroll-offset="24"><div class="lwptoc_i"> <div class="lwptoc_header">
<b class="lwptoc_title">Table of Contents</b> <span class="lwptoc_toggle">
<a href="#" class="lwptoc_toggle_label" data-label="hide">Show</a>
</span>
</div>
<div class="lwptoc_items" style="display:none;">
<div class="lwptoc_itemWrap"><div class="lwptoc_item"> <a href="#What_Youll_Need_for_Oreo_Cheesecake_Bites">
<span class="lwptoc_item_label">What You’ll Need for Oreo Cheesecake Bites</span>
</a>
</div><div class="lwptoc_item"> <a href="#How_to_Make_Oreo_Cheesecake_Bites">
<span class="lwptoc_item_label">How to Make Oreo Cheesecake Bites</span>
</a>
</div><div class="lwptoc_item"> <a href="#Tips_for_Making_the_Best_Mini_Oreo_Cheesecake_Bites">
<span class="lwptoc_item_label">Tips for Making the Best Mini Oreo Cheesecake Bites</span>
</a>
</div><div class="lwptoc_item"> <a href="#How_to_Store_these_Oreo_Cheesecake_Cupcakes">
<span class="lwptoc_item_label">How to Store these Oreo Cheesecake Cupcakes?</span>
</a>
</div><div class="lwptoc_item"> <a href="#Can_I_Make_Oreo_Cheesecake_Bites_with_Greek_Yogurt">
<span class="lwptoc_item_label">Can I Make Oreo Cheesecake Bites with Greek Yogurt?</span>
</a>
</div><div class="lwptoc_item"> <a href="#How_Can_I_Prevent_the_Cheesecakes_from_Cracking">
<span class="lwptoc_item_label">How Can I Prevent the Cheesecakes from Cracking?</span>
</a>
</div><div class="lwptoc_item"> <a href="#Will_the_Oreo_Cookies_Be_Crunchy_After_Being_Cooked">
<span class="lwptoc_item_label">Will the Oreo Cookies Be Crunchy After Being Cooked?</span>
</a>
</div><div class="lwptoc_item"> <a href="#Equipment_for_this_Recipe">
<span class="lwptoc_item_label">Equipment for this Recipe</span>
</a>
</div><div class="lwptoc_item"> <a href="#Oreo_Cheesecake_Bites_Recipe_Video">
<span class="lwptoc_item_label">Oreo Cheesecake Bites Recipe (+Video)</span>
</a>
</div></div></div>
</div></div><h2 class="wp-block-heading"><span id="What_Youll_Need_for_Oreo_Cheesecake_Bites">What You’ll Need for Oreo Cheesecake Bites</span></h2>
<figure class="wp-block-image"><img decoding="async" width="683" height="1024" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="Oreo Cheesecake Bites ingredients on the counter." class="wp-image-5953" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-ingredients-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-ingredients-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-ingredients-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-ingredients.jpg 1200w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-ingredients-683x1024.jpg"><noscript><img decoding="async" width="683" height="1024" src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-ingredients-683x1024.jpg" alt="Oreo Cheesecake Bites ingredients on the counter." class="wp-image-5953" srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-ingredients-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-ingredients-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-ingredients-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-ingredients.jpg 1200w" sizes="(max-width: 683px) 100vw, 683px"></noscript></figure>
<p>The great thing about this recipe? All you need is 6 simple ingredients. </p>
<ul>
<li><strong>Oreo Cookies</strong>: Don’t use double stuff, but you can use flavored Oreos. I used the standard in this recipe.</li>
<li><strong>Cream Cheese</strong>: Avoid using low fat. Standard full-fat cream cheese produces the best flavor and consistency. It’s very important to soften the cream cheese before cooking.</li>
<li><strong>Eggs</strong>: <em>Room-temperature eggs aren’t entirely crucial but it helps to blend ingredients more easily.</em> To bring eggs to room temperature they’ll need to rest for 2 hours. Alternatively, you can soak them in warm water for 10 minutes.</li>
<li><strong>Sour Cream: </strong> The sour cream softens up the texture as well as adds a slightly tangy flavor. You can substitute plain Greek yogurt. </li>
<li><strong>Granulated Sugar: </strong>Regular granulated sugar works well.</li>
<li><strong>Vanilla Extract: </strong>It adds the subtle and delicious flavor of vanilla, and also enhances the flavor of other ingredients.</li>
</ul>
<h2 class="wp-block-heading"><span id="How_to_Make_Oreo_Cheesecake_Bites">How to Make Oreo Cheesecake Bites</span></h2>
<figure class="wp-block-image"><img decoding="async" width="1024" height="683" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201024%20683'%3E%3C/svg%3E" alt="Oreo Cheesecake Bites recipe: step 1 and 2 photos." class="wp-image-5955" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-1-and-2-1024x683.jpg 1024w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-1-and-2-300x200.jpg 300w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-1-and-2-768x512.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-1-and-2.jpg 1200w" data-lazy-sizes="(max-width: 1024px) 100vw, 1024px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-1-and-2-1024x683.jpg"><noscript><img decoding="async" width="1024" height="683" src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-1-and-2-1024x683.jpg" alt="Oreo Cheesecake Bites recipe: step 1 and 2 photos." class="wp-image-5955" srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-1-and-2-1024x683.jpg 1024w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-1-and-2-300x200.jpg 300w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-1-and-2-768x512.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-1-and-2.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px"></noscript></figure>
<p>1. Place cupcake paper liners into each muffin tin, and <strong>place one cookie into the bottom of each paper cup</strong>. Set aside.</p>
<p>2. <strong>Place the room-temperature cream cheese and sugar to a large mixing bowl</strong>. Beat with an electric hand mixer on medium speed until smooth, about 1 minute.</p>
<figure class="wp-block-image"><img decoding="async" width="1024" height="683" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201024%20683'%3E%3C/svg%3E" alt="Oreo Cheesecake Bites recipe: step 3 and 4 photos." class="wp-image-5956" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-3-and-4-1024x683.jpg 1024w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-3-and-4-300x200.jpg 300w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-3-and-4-768x512.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-3-and-4.jpg 1200w" data-lazy-sizes="(max-width: 1024px) 100vw, 1024px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-3-and-4-1024x683.jpg"><noscript><img decoding="async" width="1024" height="683" src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-3-and-4-1024x683.jpg" alt="Oreo Cheesecake Bites recipe: step 3 and 4 photos." class="wp-image-5956" srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-3-and-4-1024x683.jpg 1024w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-3-and-4-300x200.jpg 300w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-3-and-4-768x512.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-Process-3-and-4.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px"></noscript></figure>
<p>3. <strong>Add vanilla extract, eggs, and sour cream</strong>. Beat until combined. Tap bowl against your countertop a few times to release any large air bubbles.</p>
<p>4. <strong>Add <em>crumbled</em> Oreo pieces</strong>. Mix gently using a spatula. </p>
<figure class="wp-block-image"><img decoding="async" width="1024" height="683" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201024%20683'%3E%3C/svg%3E" alt="Oreo Cheesecake Recipe: step 5 and 6 photos." class="wp-image-5957" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-process-5-and-6-1024x683.jpg 1024w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-process-5-and-6-300x200.jpg 300w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-process-5-and-6-768x512.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-process-5-and-6.jpg 1200w" data-lazy-sizes="(max-width: 1024px) 100vw, 1024px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-process-5-and-6-1024x683.jpg"><noscript><img decoding="async" width="1024" height="683" src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-process-5-and-6-1024x683.jpg" alt="Oreo Cheesecake Recipe: step 5 and 6 photos." class="wp-image-5957" srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-process-5-and-6-1024x683.jpg 1024w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-process-5-and-6-300x200.jpg 300w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-process-5-and-6-768x512.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-process-5-and-6.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px"></noscript></figure>
<p>5. <strong>Spoon the mixture into each cup until they are almost full</strong>. Note that the cheesecake won’t rise as much as normal cupcakes. </p>
<p>6. Bake these miniature cheesecakes in the oven at <strong>325°F for 20-25 minutes</strong>.</p>
<figure class="wp-block-image"><img decoding="async" width="682" height="1024" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20682%201024'%3E%3C/svg%3E" alt="The most incredible Oreo Cheesecake Bites – creamy and smooth mini cheesecakes with Oreo crust at the bottom. I’ve included the detailed tips for you to make the best bite-size Oreo cheesecake cupcakes and they will be a perfect dessert at any party! #OreoCheesecakeBites #OreoCheesecakeCupcakes" class="wp-image-5958" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-6-682x1024.jpg 682w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-6-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-6-768x1153.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-6.jpg 1199w" data-lazy-sizes="(max-width: 682px) 100vw, 682px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-6-682x1024.jpg"><noscript><img decoding="async" width="682" height="1024" src="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-6-682x1024.jpg" alt="The most incredible Oreo Cheesecake Bites – creamy and smooth mini cheesecakes with Oreo crust at the bottom. I’ve included the detailed tips for you to make the best bite-size Oreo cheesecake cupcakes and they will be a perfect dessert at any party! #OreoCheesecakeBites #OreoCheesecakeCupcakes" class="wp-image-5958" srcset="https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-6-682x1024.jpg 682w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-6-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-6-768x1153.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/07/Oreo-Cheesecake-Bites-6.jpg 1199w" sizes="(max-width: 682px) 100vw, 682px"></noscript></figure>
<h2 class="wp-block-heading"><span id="Tips_for_Making_the_Best_Mini_Oreo_Cheesecake_Bites">Tips for Making the Best Mini Oreo Cheesecake Bites</span></h2>
<ul>
<li>It’s best to bring your cream cheese, eggs, and sour cream to <em><strong>room temperature</strong></em> before you make the mixture, as this will ensure a smooth texture of your cheesecake bites.</li>
<li><em><strong>Don’t over-beat</strong></em> your eggs! Stop as soon as they are combined with the rest of the ingredients.</li>
<li>To prevent the surface from cracking or burned, bake your Oreo cheesecake bites<em><strong> in a low-temperature oven</strong></em> for a <em><strong>fluffy and light</strong></em> texture. (Note that cheesecake is supposed to have a pale look instead of a golden brown color.)</li>
</ul>
<p class="has-text-align-center" style="font-size:33px"><strong>Frequently Asked Questions</strong></p>
<h2 class="wp-block-heading"><span id="How_to_Store_these_Oreo_Cheesecake_Cupcakes">How to Store these Oreo Cheesecake Cupcakes?</span></h2>
<p><strong>Store them in the refrigerator</strong>: <strong><em>Cheesecakes cannot be left at room temperature for more than 4-6 hours</em></strong>, so place these oreo cheesecake cupcakes in an airtight container and store them in the refrigerator. <strong><em>It can last for up to 5 days</em></strong> <strong>in the fridge</strong>.</p>
<p><strong>Store them in the freezer: </strong>These Oreo cheesecake bites freeze well. Once they are cooled, you can wrap them in plastic wrap and place them in zip-top bags. <strong>They will last for a few months.</strong> Allow frozen mini cheesecakes to defrost overnight in the refrigerator.</p>
<h2 class="wp-block-heading"><span id="Can_I_Make_Oreo_Cheesecake_Bites_with_Greek_Yogurt">Can I Make Oreo Cheesecake Bites with Greek Yogurt?</span></h2>
<p>Yes, you’ll need to use plain Greek yogurt for this recipe. I’ve tried both sour cream and Greek yogurt, and there’s no difference in terms of the flavor or texture.</p>
<h2 class="wp-block-heading"><span id="How_Can_I_Prevent_the_Cheesecakes_from_Cracking">How Can I Prevent the Cheesecakes from Cracking?</span></h2>
<p>Make sure your oven temperature is accurate and you’ll need to bake them at 325°F. If it’s above this temperature, the cheesecake is likely to crack. In addition, if any chopped Oreos float up a bit to the surface of the batter, use a toothpick to push them back down. If they are too close to the surface, they can cause cracking.</p>
<h2 class="wp-block-heading"><span id="Will_the_Oreo_Cookies_Be_Crunchy_After_Being_Cooked">Will the Oreo Cookies Be Crunchy After Being Cooked?</span></h2>
<p>No, the baked Oreos actually soak up the moisture from the cream cheese batter. They are soft and moist once baked!</p>
<h2 class="wp-block-heading"><span id="Equipment_for_this_Recipe">Equipment for this Recipe</span></h2>
<ul>
<li><a href="https://amzn.to/2AOow3J" target="_blank" rel="noreferrer noopener sponsored nofollow">Muffin Tin</a>: You can also use the mini cheesecake pan if you have one.</li>
<li><a href="https://amzn.to/300xKCm" target="_blank" rel="noreferrer noopener sponsored nofollow">Cupcake Paper Liners</a></li>
<li><a href="https://amzn.to/3f5zLnN" target="_blank" rel="noreferrer noopener sponsored nofollow">Mixing Bowl</a></li>
<li><a href="https://amzn.to/38IvnIs" target="_blank" rel="noreferrer noopener sponsored nofollow">Hand Mixer</a></li>
</ul>
<p class="has-text-align-center has-medium-font-size"><strong>If You Like This Recipe Try These Out:</strong></p>
<figure class="wp-block-gallery has-nested-images columns-4 is-cropped wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image"><img decoding="async" width="683" height="1024" data-id="5035" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="The only thing better than a sugary and rich dessert is a fancy gourmet treat that’s beautiful and easy to make from scratch. Find over 22 fancy desserts below to satisfy your sweet tooth! Whether you’re craving for a classic French dessert for two, or a showstopper chocolate dessert for a crowd, we’ve got you covered. #FancyDesserts #FancyDessertRecipes" class="wp-image-5035" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-dessert-oreo-cookie-balls-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-dessert-oreo-cookie-balls-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-dessert-oreo-cookie-balls-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-dessert-oreo-cookie-balls.jpg 1200w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-dessert-oreo-cookie-balls-683x1024.jpg"><noscript><img decoding="async" width="683" height="1024" data-id="5035" src="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-dessert-oreo-cookie-balls-683x1024.jpg" alt="The only thing better than a sugary and rich dessert is a fancy gourmet treat that’s beautiful and easy to make from scratch. Find over 22 fancy desserts below to satisfy your sweet tooth! Whether you’re craving for a classic French dessert for two, or a showstopper chocolate dessert for a crowd, we’ve got you covered. #FancyDesserts #FancyDessertRecipes" class="wp-image-5035" srcset="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-dessert-oreo-cookie-balls-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-dessert-oreo-cookie-balls-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-dessert-oreo-cookie-balls-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-dessert-oreo-cookie-balls.jpg 1200w" sizes="(max-width: 683px) 100vw, 683px"></noscript><figcaption class="wp-element-caption"><a href="https://izzycooking.com/oreo-cookie-balls/">Oreo Cookie Balls</a></figcaption></figure>
<figure class="wp-block-image"><img decoding="async" width="683" height="1024" data-id="5018" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="The only thing better than a sugary and rich dessert is a fancy gourmet treat that’s beautiful and easy to make from scratch. Find over 22 fancy desserts below to satisfy your sweet tooth! Whether you’re craving for a classic French dessert for two, or a showstopper chocolate dessert for a crowd, we’ve got you covered. #FancyDesserts #FancyDessertRecipes" class="wp-image-5018" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-no-bake-cheesecake-bites-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-no-bake-cheesecake-bites-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-no-bake-cheesecake-bites-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-no-bake-cheesecake-bites.jpg 1200w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-no-bake-cheesecake-bites-683x1024.jpg"><noscript><img decoding="async" width="683" height="1024" data-id="5018" src="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-no-bake-cheesecake-bites-683x1024.jpg" alt="The only thing better than a sugary and rich dessert is a fancy gourmet treat that’s beautiful and easy to make from scratch. Find over 22 fancy desserts below to satisfy your sweet tooth! Whether you’re craving for a classic French dessert for two, or a showstopper chocolate dessert for a crowd, we’ve got you covered. #FancyDesserts #FancyDessertRecipes" class="wp-image-5018" srcset="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-no-bake-cheesecake-bites-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-no-bake-cheesecake-bites-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-no-bake-cheesecake-bites-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-no-bake-cheesecake-bites.jpg 1200w" sizes="(max-width: 683px) 100vw, 683px"></noscript><figcaption class="wp-element-caption"><a href="https://izzycooking.com/no-bake-cheesecake-bites/">No-Bake Cheesecake Bites</a></figcaption></figure>
<figure class="wp-block-image"><img decoding="async" width="683" height="1024" data-id="5016" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="The only thing better than a sugary and rich dessert is a fancy gourmet treat that’s beautiful and easy to make from scratch. Find over 22 fancy desserts below to satisfy your sweet tooth! Whether you’re craving for a classic French dessert for two, or a showstopper chocolate dessert for a crowd, we’ve got you covered. #FancyDesserts #FancyDessertRecipes" class="wp-image-5016" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-oreo-stuffed-chocolate-chip-cookies-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-oreo-stuffed-chocolate-chip-cookies-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-oreo-stuffed-chocolate-chip-cookies-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-oreo-stuffed-chocolate-chip-cookies.jpg 1200w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-oreo-stuffed-chocolate-chip-cookies-683x1024.jpg"><noscript><img decoding="async" width="683" height="1024" data-id="5016" src="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-oreo-stuffed-chocolate-chip-cookies-683x1024.jpg" alt="The only thing better than a sugary and rich dessert is a fancy gourmet treat that’s beautiful and easy to make from scratch. Find over 22 fancy desserts below to satisfy your sweet tooth! Whether you’re craving for a classic French dessert for two, or a showstopper chocolate dessert for a crowd, we’ve got you covered. #FancyDesserts #FancyDessertRecipes" class="wp-image-5016" srcset="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-oreo-stuffed-chocolate-chip-cookies-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-oreo-stuffed-chocolate-chip-cookies-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-oreo-stuffed-chocolate-chip-cookies-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-desserts-oreo-stuffed-chocolate-chip-cookies.jpg 1200w" sizes="(max-width: 683px) 100vw, 683px"></noscript><figcaption class="wp-element-caption"><a href="https://izzycooking.com/oreo-chocolate-chip-cookies/">Oreo Stuffed Cookies</a></figcaption></figure>
<figure class="wp-block-image"><img decoding="async" width="683" height="1024" data-id="5014" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="The only thing better than a sugary and rich dessert is a fancy gourmet treat that’s beautiful and easy to make from scratch. Find over 22 fancy desserts below to satisfy your sweet tooth! Whether you’re craving for a classic French dessert for two, or a showstopper chocolate dessert for a crowd, we’ve got you covered. #FancyDesserts #FancyDessertRecipes" class="wp-image-5014" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-Desserts-cheesecake-stuffed-strawberries-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-Desserts-cheesecake-stuffed-strawberries-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-Desserts-cheesecake-stuffed-strawberries-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-Desserts-cheesecake-stuffed-strawberries.jpg 1200w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-Desserts-cheesecake-stuffed-strawberries-683x1024.jpg"><noscript><img decoding="async" width="683" height="1024" data-id="5014" src="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-Desserts-cheesecake-stuffed-strawberries-683x1024.jpg" alt="The only thing better than a sugary and rich dessert is a fancy gourmet treat that’s beautiful and easy to make from scratch. Find over 22 fancy desserts below to satisfy your sweet tooth! Whether you’re craving for a classic French dessert for two, or a showstopper chocolate dessert for a crowd, we’ve got you covered. #FancyDesserts #FancyDessertRecipes" class="wp-image-5014" srcset="https://izzycooking.com/wp-content/uploads/2020/06/Fancy-Desserts-cheesecake-stuffed-strawberries-683x1024.jpg 683w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-Desserts-cheesecake-stuffed-strawberries-200x300.jpg 200w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-Desserts-cheesecake-stuffed-strawberries-768x1152.jpg 768w, https://izzycooking.com/wp-content/uploads/2020/06/Fancy-Desserts-cheesecake-stuffed-strawberries.jpg 1200w" sizes="(max-width: 683px) 100vw, 683px"></noscript><figcaption class="wp-element-caption"><a href="https://izzycooking.com/cheesecake-filled-strawberries/">Cheesecake Stuffed Strawberries</a></figcaption></figure>
</figure>
<p>If you like these Oreo Cheesecake Bites then don’t forget to rate the recipe and let me know. I love hearing from you!</p>
<div id="recipe"></div><div id="wprm-recipe-container-94" class="wprm-recipe-container" data-recipe-id="94" data-servings="16"><div class="wprm-recipe wprm-recipe-template-cutout-my-version"><div class="wprm-recipe-image wprm-block-image-rounded"><img 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="" decoding="async" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-320x320.jpg 320w, https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-150x150.jpg 150w, https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-500x500.jpg 500w" data-lazy-sizes="(max-width: 200px) 100vw, 200px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-320x320.jpg"><noscript><img style="border-width: 10px;border-style: solid;border-color: #ffffff;border-radius: 30px;" width="200" height="200" src="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-320x320.jpg" class="attachment-200x200 size-200x200" alt="" decoding="async" srcset="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-320x320.jpg 320w, https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-150x150.jpg 150w, https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Featured-Image-500x500.jpg 500w" sizes="(max-width: 200px) 100vw, 200px"></noscript></div>
<div class="wprm-recipe-template-cutout-my-version-container">
<div class="wprm-recipe-template-cutout-my-version-header">
<h2 class="wprm-recipe-name wprm-block-text-bold"><span id="Oreo_Cheesecake_Bites_Recipe_Video">Oreo Cheesecake Bites Recipe (+Video)</span></h2>
<div class="wprm-spacer" style="height: 5px"></div>
<div class="wprm-recipe-summary wprm-block-text-normal"><span style="display: block;">Oreo Cheesecake Bites are creamy and soft mini cheesecakes with a delicious oreo crust at the bottom. They are so easy to make and a guaranteed hit at any party.</span></div>
<div class="wprm-spacer" style="height: 15px"></div>
<style>#wprm-recipe-rating-0 .wprm-rating-star.wprm-rating-star-full svg * { fill: #ffffff; }#wprm-recipe-rating-0 .wprm-rating-star.wprm-rating-star-33 svg * { fill: url(#wprm-recipe-rating-0-33); }#wprm-recipe-rating-0 .wprm-rating-star.wprm-rating-star-50 svg * { fill: url(#wprm-recipe-rating-0-50); }#wprm-recipe-rating-0 .wprm-rating-star.wprm-rating-star-66 svg * { fill: url(#wprm-recipe-rating-0-66); }linearGradient#wprm-recipe-rating-0-33 stop { stop-color: #ffffff; }linearGradient#wprm-recipe-rating-0-50 stop { stop-color: #ffffff; }linearGradient#wprm-recipe-rating-0-66 stop { stop-color: #ffffff; }</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-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-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-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><div id="wprm-recipe-rating-0" class="wprm-recipe-rating wprm-recipe-rating-separate"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="#ffffff" 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-full" data-rating="2" data-color="#ffffff" 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-full" data-rating="3" data-color="#ffffff" 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-full" data-rating="4" data-color="#ffffff" 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-full" data-rating="5" data-color="#ffffff" 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"><span class="wprm-recipe-rating-average">4.93</span> from <span class="wprm-recipe-rating-count">13</span> votes</div></div>
<div class="wprm-spacer" style="height: 15px"></div>
<a href="https://izzycooking.com/wprm_print/94" 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="94" data-template="" target="_blank" rel="nofollow"><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%2Fizzycooking.com%2Foreo-cheesecake-bites%2F&media=https%3A%2F%2Fizzycooking.com%2Fwp-content%2Fuploads%2F2018%2F06%2FOreo-Cheesecake-Bites-Pin.jpg&description=Oreo+Cheesecake+Bites+Recipe+%28%2BVideo%29&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="94" data-url="https://izzycooking.com/oreo-cheesecake-bites/" data-media="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Pin.jpg" data-description="Oreo Cheesecake Bites Recipe (+Video)" data-repin=""><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-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">10<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-minutes wprm-recipe-cook_time wprm-recipe-cook_time-minutes">25<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-cook_time-unit wprm-recipe-cook_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-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-minutes wprm-recipe-total_time wprm-recipe-total_time-minutes">35<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-with-unit"><span class="wprm-recipe-servings wprm-recipe-details wprm-recipe-servings-94 wprm-recipe-servings-adjustable-tooltip wprm-block-text-normal" data-initial-servings="" data-recipe="94" aria-label="Adjust recipe servings">16</span> <span class="wprm-recipe-servings-unit wprm-recipe-details-unit wprm-block-text-normal">mini cheesecakes</span></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">221</span><span class="wprm-recipe-details-unit wprm-recipe-nutrition-unit wprm-recipe-calories-unit wprm-block-text-normal">kcal</span></span></div>
</div>
<div class="wprm-recipe-ingredients-container wprm-recipe-ingredients-no-images wprm-recipe-94-ingredients-container wprm-block-text-normal wprm-ingredient-style-regular wprm-recipe-images-before" data-recipe="94" data-servings="16"><h3 class="wprm-recipe-header wprm-recipe-ingredients-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none wprm-header-has-actions" style="">Ingredients <div class="wprm-recipe-adjustable-servings-container wprm-recipe-adjustable-servings-94-container wprm-toggle-container wprm-block-text-faded" data-initial-servings="" style="background-color: #ffffff;border-color: #333333;color: #333333;border-radius: 3px;"><button href="#" class="wprm-recipe-adjustable-servings wprm-toggle wprm-toggle-active" data-multiplier="1" data-servings="16" data-recipe="94" style="background-color: #333333;color: #ffffff;" aria-label="Adjust servings by 1x">1x</button><button href="#" class="wprm-recipe-adjustable-servings wprm-toggle" data-multiplier="2" data-servings="16" data-recipe="94" style="background-color: #333333;color: #ffffff;border-left: 1px solid #333333;" aria-label="Adjust servings by 2x">2x</button><button href="#" class="wprm-recipe-adjustable-servings wprm-toggle" data-multiplier="3" data-servings="16" data-recipe="94" style="background-color: #333333;color: #ffffff;border-left: 1px solid #333333;" aria-label="Adjust servings by 3x">3x</button></div></h3><div class="wprm-recipe-ingredient-group"><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-0" class="wprm-checkbox" aria-label=" 22 Oreo cookies (Chop 6 of them into small pieces)"><label for="wprm-checkbox-0" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">22</span> <span class="wprm-recipe-ingredient-name">Oreo cookies</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">(Chop 6 of them into small pieces)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: none;" data-uid="1"><span class="wprm-checkbox-container"><input type="checkbox" id="wprm-checkbox-1" class="wprm-checkbox" aria-label=" 16 ounces cream cheese softened"><label for="wprm-checkbox-1" class="wprm-checkbox-label"><span class="sr-only screen-reader-text wprm-screen-reader-text">▢ </span></label></span><span class="wprm-recipe-ingredient-amount">16</span> <span class="wprm-recipe-ingredient-unit">ounces</span> <span class="wprm-recipe-ingredient-name">cream cheese </span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">softened</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-2" class="wprm-checkbox" aria-label=" 1/2 cup granulated sugar"><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/2</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">granulated sugar</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-3" class="wprm-checkbox" aria-label=" 1/2 tsp vanilla extract"><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">1/2</span> <span class="wprm-recipe-ingredient-unit">tsp</span> <span class="wprm-recipe-ingredient-name">vanilla extract</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-4" class="wprm-checkbox" aria-label=" 2 eggs "><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">2</span> <span class="wprm-recipe-ingredient-name">eggs </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-5" class="wprm-checkbox" aria-label=" 1/2 cup sour cream (or plain Greek yogurt)"><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">1/2</span> <span class="wprm-recipe-ingredient-unit">cup</span> <span class="wprm-recipe-ingredient-name">sour cream</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-faded">(or plain Greek yogurt)</span></li></ul></div></div>
<div class="wprm-recipe-instructions-container wprm-recipe-94-instructions-container wprm-block-text-normal" data-recipe="94"><h3 class="wprm-recipe-header wprm-recipe-instructions-header wprm-block-text-bold wprm-align-left wprm-header-decoration-none wprm-header-has-actions" style="">Instructions </h3><div class="wprm-recipe-instruction-group"><ul class="wprm-recipe-instructions"><li id="wprm-recipe-94-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;">Preheat oven to 325°F. (Make sure your oven temperature is accurate, as a higher temp can cause the cheesecake to crack.)</span></div></li><li id="wprm-recipe-94-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;">Place cupcake paper liners into a muffin tin pan. Add one Oreo cookie into each paper cup. Set aside.</span></div></li><li id="wprm-recipe-94-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;">Add softened cream cheese and sugar to a medium mixing bowl. Beat on medium speed using a hand mixer.</span></div></li><li id="wprm-recipe-94-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;">Then add vanilla and eggs. Mixing well until smooth without lumps.</span></div></li><li id="wprm-recipe-94-step-0-4" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Add sour cream, mix until combined. Tap bowl against your countertop a few times to release any large air bubbles.</span></div></li><li id="wprm-recipe-94-step-0-5" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Stir in chopped cookies, and <strong>mix generally using a spatula</strong>. (Be careful not to crush oreos into smaller crumbs.)</span></div></li><li id="wprm-recipe-94-step-0-6" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Spoon the batter on top of the oreo, <strong>filling each to almost the top</strong>. Note that cheesecake won't rise as much as a regular cupcake.</span></div></li><li id="wprm-recipe-94-step-0-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 in the lower third of the oven and bake for about 20-25 minutes until the edges just start to turn brown. <strong>Note that classic cheesecake is supposed to look pale, so you're not looking for golden brown</strong>.</span></div></li><li id="wprm-recipe-94-step-0-8" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Remove from oven and transfer to cooling racks. </span></div></li><li id="wprm-recipe-94-step-0-9" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Chill in the fridge for 4 hours or overnight. Serve and enjoy! (You can store them in the fridge for up to 5 days.)</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"><ul class="block-editor-rich-text__editable editor-rich-text__editable" role="textbox" data-is-placeholder-visible="false" aria-label="Write list…">
<li>It’s best to bring your cream cheese to room temperature before you make the mixture, as this will ensure a smooth texture of your cheesecake bites.</li>
<li>Don’t over-beat your eggs! Stop as soon as they are combined with the rest of the ingredients.</li>
</ul></div></div>
<div id="recipe-video"></div><div id="wprm-recipe-video-container-94" 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="mv-video-target mv-video-id-iuooaiI36" data-video-id="iuooaiI36" data-volume="70" data-ratio="16:9"></div></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: left;"><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-normal" style="color: #777777">Calories: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">221</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">kcal</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">Carbohydrates: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">19</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">Protein: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">3</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">15</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">Saturated Fat: </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: #777777"> | </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-normal" style="color: #777777">Cholesterol: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">55</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">Sodium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">181</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">Potassium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">92</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">Fiber: </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: #777777"> | </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-normal" style="color: #777777">Sugar: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">14</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">g</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">Vitamin A: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">455</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">IU</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">Vitamin C: </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">mg</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">Calcium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #333333">42</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #333333">mg</span></span><span style="color: #777777"> | </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-normal" style="color: #777777">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-recipe-meta-container wprm-recipe-tags-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">Dessert</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">American</span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-tag-container wprm-recipe-keyword-container" style=""><span class="wprm-recipe-details-label wprm-block-text-faded wprm-recipe-tag-label wprm-recipe-keyword-label">Keyword: </span><span class="wprm-recipe-keyword wprm-block-text-normal">mini cheesecakes, oreo cheesecake bites, oreo cheesecake cupcakes</span></div></div>
<div class="wprm-call-to-action wprm-call-to-action-simple" style="color: #ffffff;background-color: #053f5e;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="#ffffff"><path fill="#ffffff" 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> <span class="wprm-call-to-action-text-container"><span class="wprm-call-to-action-header" style="color: #ffffff;">Tried this recipe?</span><span class="wprm-call-to-action-text">Follow or tag us on Pinterest <a href="https://www.pinterest.com/izzycooking" target="_blank" rel="noreferrer noopener" style="color: #3498db">@izzycooking</a></span></span></div>
</div></div></div>
<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" width="358" height="1024" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20358%201024'%3E%3C/svg%3E" alt="The most incredible Oreo Cheesecake Bites – creamy and soft cheesecake with a delicious oreo crust at the bottom. They are so easy to make and a guaranteed hit at any parties! #OreoCheesecake #MiniOreoCheesecake" class="wp-image-96" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Pin-358x1024.jpg 358w, https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Pin-105x300.jpg 105w, https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Pin.jpg 735w" data-lazy-sizes="(max-width: 358px) 100vw, 358px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Pin-358x1024.jpg"><noscript><img decoding="async" width="358" height="1024" src="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Pin-358x1024.jpg" alt="The most incredible Oreo Cheesecake Bites – creamy and soft cheesecake with a delicious oreo crust at the bottom. They are so easy to make and a guaranteed hit at any parties! #OreoCheesecake #MiniOreoCheesecake" class="wp-image-96" srcset="https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Pin-358x1024.jpg 358w, https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Pin-105x300.jpg 105w, https://izzycooking.com/wp-content/uploads/2018/06/Oreo-Cheesecake-Bites-Pin.jpg 735w" sizes="(max-width: 358px) 100vw, 358px"></noscript></figure></div>
<p style="font-size:11px"><strong>UPDATED JULY 10, 2020: </strong> We added more details to help you make the best Oreo Cheesecake Bites ever. Enjoy!</p>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="rocketlazyloadscript" async data-uid="756403d97f" data-rocket-src="https://chipper-mover-8907.ck.page/756403d97f/index.js"></script><!--<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://izzycooking.com/oreo-cheesecake-bites/"
dc:identifier="https://izzycooking.com/oreo-cheesecake-bites/"
dc:title="Oreo Cheesecake Bites (Mini Philadelphia Oreo Cheesecake)"
trackback:ping="https://izzycooking.com/oreo-cheesecake-bites/trackback/" />
</rdf:RDF>-->
</div><footer class="entry-footer"><p class="entry-meta"><span class="entry-categories">Filed Under: <a href="https://izzycooking.com/category/dessert/" rel="category tag">Dessert</a></span> <span class="entry-tags">Tagged With: <a href="https://izzycooking.com/tag/cream-cheese/" rel="tag">cream cheese</a>, <a href="https://izzycooking.com/tag/eggs/" rel="tag">eggs</a>, <a href="https://izzycooking.com/tag/oreo-cookies/" rel="tag">oreo cookies</a>, <a href="https://izzycooking.com/tag/sour-cream/" rel="tag">sour cream</a>, <a href="https://izzycooking.com/tag/sugar/" rel="tag">sugar</a>, <a href="https://izzycooking.com/tag/vanilla-extract/" rel="tag">vanilla extract</a></span></p></footer></article><section class="author-box"><img alt='' src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2070%2070'%3E%3C/svg%3E" data-lazy-srcset='https://secure.gravatar.com/avatar/691c43dffaac3bd0a2edb14952e79e95?s=140&d=mm&r=g 2x' class='avatar avatar-70 photo' height='70' width='70' decoding='async' data-lazy-src="https://secure.gravatar.com/avatar/691c43dffaac3bd0a2edb14952e79e95?s=70&d=mm&r=g"/><noscript><img alt='' src='https://secure.gravatar.com/avatar/691c43dffaac3bd0a2edb14952e79e95?s=70&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/691c43dffaac3bd0a2edb14952e79e95?s=140&d=mm&r=g 2x' class='avatar avatar-70 photo' height='70' width='70' decoding='async'/></noscript><h4 class="author-box-title">About <span itemprop="name">Izzy</span></h4><div class="author-box-content" itemprop="description"><p>I'm Izzy, a food lover and photographer. Here you’ll find a collection of simple recipes that are perfect for busy people. My blog aims to help you make and enjoy delicious and healthy food at home.</p>
</div></section><h2 class="screen-reader-text">Reader Interactions</h2><div class="entry-comments" id="comments"><h3>Comments</h3><ol class="comment-list">
<li class="comment even thread-even depth-1" id="comment-76">
<article id="article-comment-76">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Chrissy</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">August 19, 2018 at 7:54 pm</time></p> </header>
<div class="comment-content">
<p>Used this recipe and it came out great! I used double stuffed oreos and it ended up making almost 24 instead of 12…</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-76' data-commentid="76" data-postid="87" data-belowelement="article-comment-76" data-respondelement="respond" data-replyto="Reply to Chrissy" aria-label='Reply to Chrissy'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor odd alt depth-2" id="comment-185">
<article id="article-comment-185">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">izzycooking</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">September 10, 2018 at 12:00 am</time></p> </header>
<div class="comment-content">
<p>Hi Chrissy, That’s amazing, so glad to hear it came out great 🙂</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-185' data-commentid="185" data-postid="87" data-belowelement="article-comment-185" data-respondelement="respond" data-replyto="Reply to izzycooking" aria-label='Reply to izzycooking'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment even thread-odd thread-alt depth-1" id="comment-88">
<article id="article-comment-88">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Gldnda</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">August 24, 2018 at 12:13 am</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
Looks delicious. Can’t wait to try it</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-88' data-commentid="88" data-postid="87" data-belowelement="article-comment-88" data-respondelement="respond" data-replyto="Reply to Gldnda" aria-label='Reply to Gldnda'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor odd alt depth-2" id="comment-184">
<article id="article-comment-184">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">izzycooking</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">September 09, 2018 at 11:59 pm</time></p> </header>
<div class="comment-content">
<p>Thanks Glenda, let me know how hit goes when you do 🙂</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-184' data-commentid="184" data-postid="87" data-belowelement="article-comment-184" data-respondelement="respond" data-replyto="Reply to izzycooking" aria-label='Reply to izzycooking'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-105">
<article id="article-comment-105">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Adam torrens</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">August 27, 2018 at 7:45 am</time></p> </header>
<div class="comment-content">
<p>I will make some</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-105' data-commentid="105" data-postid="87" data-belowelement="article-comment-105" data-respondelement="respond" data-replyto="Reply to Adam torrens" aria-label='Reply to Adam torrens'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor odd alt depth-2" id="comment-183">
<article id="article-comment-183">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">izzycooking</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">September 09, 2018 at 11:58 pm</time></p> </header>
<div class="comment-content">
<p>Awesome 🙂</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-183' data-commentid="183" data-postid="87" data-belowelement="article-comment-183" data-respondelement="respond" data-replyto="Reply to izzycooking" aria-label='Reply to izzycooking'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment even thread-odd thread-alt depth-1" id="comment-115">
<article id="article-comment-115">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Charlotte</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">August 28, 2018 at 6:33 pm</time></p> </header>
<div class="comment-content">
<p>On the video the oven temperature says 275°, however on the written instructions The temp is listed at 325°. Which is best?</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-115' data-commentid="115" data-postid="87" data-belowelement="article-comment-115" data-respondelement="respond" data-replyto="Reply to Charlotte" aria-label='Reply to Charlotte'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-even depth-1" id="comment-116">
<article id="article-comment-116">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Charlotte</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">August 28, 2018 at 6:37 pm</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
These look scrumptious! Shall I bring the oven temperature up to 275° or 325° as it lists both? Thank you for clarifying!!!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-116' data-commentid="116" data-postid="87" data-belowelement="article-comment-116" data-respondelement="respond" data-replyto="Reply to Charlotte" aria-label='Reply to Charlotte'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor even depth-2" id="comment-182">
<article id="article-comment-182">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">izzycooking</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">September 09, 2018 at 11:57 pm</time></p> </header>
<div class="comment-content">
<p>Hi Charlotte, Thanks, we’ve found the best temperature is 300° after lots of testing but it depends somewhat on your oven too. Good luck!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-182' data-commentid="182" data-postid="87" data-belowelement="article-comment-182" data-respondelement="respond" data-replyto="Reply to izzycooking" aria-label='Reply to izzycooking'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-144">
<article id="article-comment-144">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Elzi</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">September 03, 2018 at 2:10 pm</time></p> </header>
<div class="comment-content">
<p>Gostaria que tivesse traduções em portugues</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-144' data-commentid="144" data-postid="87" data-belowelement="article-comment-144" data-respondelement="respond" data-replyto="Reply to Elzi" aria-label='Reply to Elzi'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor even depth-2" id="comment-180">
<article id="article-comment-180">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">izzycooking</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">September 09, 2018 at 11:55 pm</time></p> </header>
<div class="comment-content">
<p>Please use Google Translate, as I can’t speak portugues 🙂</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-180' data-commentid="180" data-postid="87" data-belowelement="article-comment-180" data-respondelement="respond" data-replyto="Reply to izzycooking" aria-label='Reply to izzycooking'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-even depth-1" id="comment-238">
<article id="article-comment-238">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Heather</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">September 19, 2018 at 12:12 am</time></p> </header>
<div class="comment-content">
<p>You used regular size muffin pans corrrct?</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-238' data-commentid="238" data-postid="87" data-belowelement="article-comment-238" data-respondelement="respond" data-replyto="Reply to Heather" aria-label='Reply to Heather'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor even depth-2" id="comment-325">
<article id="article-comment-325">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">izzycooking</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">October 04, 2018 at 5:12 am</time></p> </header>
<div class="comment-content">
<p>Hi Heather, Yes, regular size muffin pans. Thanks for asking 🙂</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-325' data-commentid="325" data-postid="87" data-belowelement="article-comment-325" data-respondelement="respond" data-replyto="Reply to izzycooking" aria-label='Reply to izzycooking'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-289">
<article id="article-comment-289">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Dan</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">September 28, 2018 at 2:34 pm</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
Who’s going to make me some?<br />
(Serious question)</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-289' data-commentid="289" data-postid="87" data-belowelement="article-comment-289" data-respondelement="respond" data-replyto="Reply to Dan" aria-label='Reply to Dan'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-341">
<article id="article-comment-341">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Liz</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">October 05, 2018 at 5:37 pm</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
Do you cover them in the fridge? I covered them the first time I made them and they were full of condensation!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-341' data-commentid="341" data-postid="87" data-belowelement="article-comment-341" data-respondelement="respond" data-replyto="Reply to Liz" aria-label='Reply to Liz'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-374">
<article id="article-comment-374">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Marie</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">October 09, 2018 at 6:04 pm</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
OMG these are AMAZING!!! They are so easy to make too! I can’t stop eating them! You must make these!!!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-374' data-commentid="374" data-postid="87" data-belowelement="article-comment-374" data-respondelement="respond" data-replyto="Reply to Marie" aria-label='Reply to Marie'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-395">
<article id="article-comment-395">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">LucApple</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">October 12, 2018 at 6:22 am</time></p> </header>
<div class="comment-content">
<p>Mine turn up to beba desaster! Yours look so nice.</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-395' data-commentid="395" data-postid="87" data-belowelement="article-comment-395" data-respondelement="respond" data-replyto="Reply to LucApple" aria-label='Reply to LucApple'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-511">
<article id="article-comment-511">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">fatty tessie</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">October 28, 2018 at 3:41 pm</time></p> </header>
<div class="comment-content">
<p>yummy!!!! i loved them & will make them again!!!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-511' data-commentid="511" data-postid="87" data-belowelement="article-comment-511" data-respondelement="respond" data-replyto="Reply to fatty tessie" aria-label='Reply to fatty tessie'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-633">
<article id="article-comment-633">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Samal Alpysbayeva</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">November 14, 2018 at 12:39 am</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
Hi</p>
<p>My oven doesnt work. Could you help me with cooking on pan?!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-633' data-commentid="633" data-postid="87" data-belowelement="article-comment-633" data-respondelement="respond" data-replyto="Reply to Samal Alpysbayeva" aria-label='Reply to Samal Alpysbayeva'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-644">
<article id="article-comment-644">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">yvette</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">November 15, 2018 at 5:06 pm</time></p> </header>
<div class="comment-content">
<p>Can i make this same recipe pumpkin gingesnap?</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-644' data-commentid="644" data-postid="87" data-belowelement="article-comment-644" data-respondelement="respond" data-replyto="Reply to yvette" aria-label='Reply to yvette'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-685">
<article id="article-comment-685">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Phyllis</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">November 21, 2018 at 6:00 pm</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
these are going to be one of my Thanksgiving desserts. I’ve made before but wish me luck 🙂</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-685' data-commentid="685" data-postid="87" data-belowelement="article-comment-685" data-respondelement="respond" data-replyto="Reply to Phyllis" aria-label='Reply to Phyllis'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-976">
<article id="article-comment-976">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Billie</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">December 15, 2018 at 1:25 pm</time></p> </header>
<div class="comment-content">
<p>Delicious, can they be frozen?</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-976' data-commentid="976" data-postid="87" data-belowelement="article-comment-976" data-respondelement="respond" data-replyto="Reply to Billie" aria-label='Reply to Billie'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-981">
<article id="article-comment-981">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Liz</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">December 16, 2018 at 9:35 am</time></p> </header>
<div class="comment-content">
<p>Do you save these in the fridge? And for how long you can keep them good? I want to make a batch in advance for 2 birthdays next week!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-981' data-commentid="981" data-postid="87" data-belowelement="article-comment-981" data-respondelement="respond" data-replyto="Reply to Liz" aria-label='Reply to Liz'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-1033">
<article id="article-comment-1033">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Rhonda</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">December 20, 2018 at 2:03 pm</time></p> </header>
<div class="comment-content">
<p>Can they be frozen once they are cooked.</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-1033' data-commentid="1033" data-postid="87" data-belowelement="article-comment-1033" data-respondelement="respond" data-replyto="Reply to Rhonda" aria-label='Reply to Rhonda'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-1101">
<article id="article-comment-1101">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Dixie Normous</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">December 27, 2018 at 8:39 pm</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-4.svg" alt="4 stars" width="80" height="16" /><br />
Made these twice first time stuck to the recipe found it good but a little too much Oreo for my liking<br />
Second time I reduced the chopped Oreos to 4 I also added the juice of half a lemon to give a it a little more cheesecake zing it was much more to my liking<br />
I would recommend chilling overnight before consuming</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-1101' data-commentid="1101" data-postid="87" data-belowelement="article-comment-1101" data-respondelement="respond" data-replyto="Reply to Dixie Normous" aria-label='Reply to Dixie Normous'>Reply</a></div>
</article>
<ul class="children">
<li class="comment odd alt depth-2" id="comment-7060">
<article id="article-comment-7060">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Deb</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">November 23, 2021 at 8:19 pm</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
So easy to make, they have been a hit at several potlucks. The recipe is a great foundation, it leaves room to add several preferences (such as the lemon zest or different oreos)<br />
The most popular way ive been told is to serve them frozen and paper muffin tins dont stick to them! Thanks for sharing this easy and yummy dessert!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-7060' data-commentid="7060" data-postid="87" data-belowelement="article-comment-7060" data-respondelement="respond" data-replyto="Reply to Deb" aria-label='Reply to Deb'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment even thread-odd thread-alt depth-1" id="comment-1257">
<article id="article-comment-1257">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Joan</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">January 12, 2019 at 11:42 am</time></p> </header>
<div class="comment-content">
<p>Going to try K Toos gluten free sandwich cookies .They taste just like Oreos!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-1257' data-commentid="1257" data-postid="87" data-belowelement="article-comment-1257" data-respondelement="respond" data-replyto="Reply to Joan" aria-label='Reply to Joan'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-even depth-1" id="comment-1441">
<article id="article-comment-1441">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Kelly</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">February 01, 2019 at 9:27 pm</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
Making these for a dinner party tomorrow! They look great so far. I added a few extra crushed oreos to the batter.</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-1441' data-commentid="1441" data-postid="87" data-belowelement="article-comment-1441" data-respondelement="respond" data-replyto="Reply to Kelly" aria-label='Reply to Kelly'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-odd thread-alt depth-1" id="comment-1530">
<article id="article-comment-1530">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Loré Tuning</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">February 11, 2019 at 9:45 pm</time></p> </header>
<div class="comment-content">
<p>I made this but put the whole mixture in an Oreo pie pan! The first and best cheese cake I’ve ever made and tasted! Wow. Super easy</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-1530' data-commentid="1530" data-postid="87" data-belowelement="article-comment-1530" data-respondelement="respond" data-replyto="Reply to Loré Tuning" aria-label='Reply to Loré Tuning'>Reply</a></div>
</article>
<ul class="children">
<li class="comment odd alt depth-2" id="comment-4169">
<article id="article-comment-4169">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Sharon</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">May 23, 2020 at 12:28 pm</time></p> </header>
<div class="comment-content">
<p>How long did you bake and at what temp?</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-4169' data-commentid="4169" data-postid="87" data-belowelement="article-comment-4169" data-respondelement="respond" data-replyto="Reply to Sharon" aria-label='Reply to Sharon'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-1717">
<article id="article-comment-1717">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">softly</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">March 04, 2019 at 11:04 am</time></p> </header>
<div class="comment-content">
<p>It’s neаrly impossible to find welⅼ-informed people in this particular t᧐pic, but you sound<br />
like you know what you’re talking abοut! Thanks</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-1717' data-commentid="1717" data-postid="87" data-belowelement="article-comment-1717" data-respondelement="respond" data-replyto="Reply to softly" aria-label='Reply to softly'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-1731">
<article id="article-comment-1731">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Kay</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">March 06, 2019 at 5:59 pm</time></p> </header>
<div class="comment-content">
<p>Can you make them the night before?</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-1731' data-commentid="1731" data-postid="87" data-belowelement="article-comment-1731" data-respondelement="respond" data-replyto="Reply to Kay" aria-label='Reply to Kay'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor even depth-2" id="comment-2091">
<article id="article-comment-2091">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">izzycooking</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">April 20, 2019 at 7:32 am</time></p> </header>
<div class="comment-content">
<p>Yes, you can definitely make them the night before. They keep well in the fridge for up to 5 days!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-2091' data-commentid="2091" data-postid="87" data-belowelement="article-comment-2091" data-respondelement="respond" data-replyto="Reply to izzycooking" aria-label='Reply to izzycooking'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-even depth-1" id="comment-1801">
<article id="article-comment-1801">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Sharon</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">March 14, 2019 at 2:20 pm</time></p> </header>
<div class="comment-content">
<p>Why do I have so much batter left over?</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-1801' data-commentid="1801" data-postid="87" data-belowelement="article-comment-1801" data-respondelement="respond" data-replyto="Reply to Sharon" aria-label='Reply to Sharon'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-odd thread-alt depth-1" id="comment-2067">
<article id="article-comment-2067">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Glenice</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">April 16, 2019 at 10:35 pm</time></p> </header>
<div class="comment-content">
<p>Oh these are delicious!! Definitely a keeper recipe!! Thanks for sharing!!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-2067' data-commentid="2067" data-postid="87" data-belowelement="article-comment-2067" data-respondelement="respond" data-replyto="Reply to Glenice" aria-label='Reply to Glenice'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor odd alt depth-2" id="comment-2090">
<article id="article-comment-2090">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">izzycooking</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">April 20, 2019 at 7:31 am</time></p> </header>
<div class="comment-content">
<p>Great to hear that! Thanks for letting me know!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-2090' data-commentid="2090" data-postid="87" data-belowelement="article-comment-2090" data-respondelement="respond" data-replyto="Reply to izzycooking" aria-label='Reply to izzycooking'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-2298">
<article id="article-comment-2298">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Phylis</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">May 14, 2019 at 12:20 pm</time></p> </header>
<div class="comment-content">
<p>Very easy and delicious</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-2298' data-commentid="2298" data-postid="87" data-belowelement="article-comment-2298" data-respondelement="respond" data-replyto="Reply to Phylis" aria-label='Reply to Phylis'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-2775">
<article id="article-comment-2775">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Leslie</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">June 29, 2019 at 9:35 am</time></p> </header>
<div class="comment-content">
<p>How do you know if they’re not baked all the way ?</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-2775' data-commentid="2775" data-postid="87" data-belowelement="article-comment-2775" data-respondelement="respond" data-replyto="Reply to Leslie" aria-label='Reply to Leslie'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-3947">
<article id="article-comment-3947">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Sabrina</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">March 30, 2020 at 9:24 pm</time></p> </header>
<div class="comment-content">
<p>Looks delicious! Thanks for the recipe. Can’t wait to make them. Can I use fat free 1% sour cream or does it have to be full fat 14%? Thanks!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-3947' data-commentid="3947" data-postid="87" data-belowelement="article-comment-3947" data-respondelement="respond" data-replyto="Reply to Sabrina" aria-label='Reply to Sabrina'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor odd alt depth-2" id="comment-3949">
<article id="article-comment-3949">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">izzycooking</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">March 30, 2020 at 10:21 pm</time></p> </header>
<div class="comment-content">
<p>Hi Sabrina, you can use 1% sour cream for this recipe. A little less creamy, but still delicious.</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-3949' data-commentid="3949" data-postid="87" data-belowelement="article-comment-3949" data-respondelement="respond" data-replyto="Reply to izzycooking" aria-label='Reply to izzycooking'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment even thread-odd thread-alt depth-1" id="comment-4996">
<article id="article-comment-4996">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Marisa D Turner</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">November 25, 2020 at 8:56 pm</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
EASY AND SO VERY GOOD!!!!!!!!!! I used vanilla yogurt instead of sour cream 😉</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-4996' data-commentid="4996" data-postid="87" data-belowelement="article-comment-4996" data-respondelement="respond" data-replyto="Reply to Marisa D Turner" aria-label='Reply to Marisa D Turner'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor odd alt depth-2" id="comment-5034">
<article id="article-comment-5034">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">izzycooking</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">November 30, 2020 at 10:40 am</time></p> </header>
<div class="comment-content">
<p>Hi Marisa, great to hear that. Thanks for letting me know!</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-5034' data-commentid="5034" data-postid="87" data-belowelement="article-comment-5034" data-respondelement="respond" data-replyto="Reply to izzycooking" aria-label='Reply to izzycooking'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-8242">
<article id="article-comment-8242">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">CNC milling parts suppliers</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">April 18, 2022 at 6:45 am</time></p> </header>
<div class="comment-content">
<p>Thank you and good luck with the upcoming articles</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-8242' data-commentid="8242" data-postid="87" data-belowelement="article-comment-8242" data-respondelement="respond" data-replyto="Reply to CNC milling parts suppliers" aria-label='Reply to CNC milling parts suppliers'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-9556">
<article id="article-comment-9556">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Carrie</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">May 30, 2022 at 5:57 pm</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
SO wonderful! My kids loved them for their soccer tournament! Thanks, Izzy! #wap #soccermom #ilovebaking</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-9556' data-commentid="9556" data-postid="87" data-belowelement="article-comment-9556" data-respondelement="respond" data-replyto="Reply to Carrie" aria-label='Reply to Carrie'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-9991">
<article id="article-comment-9991">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Allie</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">July 04, 2022 at 9:26 am</time></p> </header>
<div class="comment-content">
<p>I substituted plain low-fat Greek yogurt for the sour cream, and otherwise made no changes. These turned out great! Perfect consistency and not too sweet. I am definitely going to keep them in my potluck dessert rotation 🙂</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-9991' data-commentid="9991" data-postid="87" data-belowelement="article-comment-9991" data-respondelement="respond" data-replyto="Reply to Allie" aria-label='Reply to Allie'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-10598">
<article id="article-comment-10598">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">數學家教</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">August 19, 2022 at 6:20 am</time></p> </header>
<div class="comment-content">
<p>Thanks Allie (upstairs) for sharing the low-fat Greek yogurt version XD I plan to try this recipe this weekend~</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-10598' data-commentid="10598" data-postid="87" data-belowelement="article-comment-10598" data-respondelement="respond" data-replyto="Reply to 數學家教" aria-label='Reply to 數學家教'>Reply</a></div>
</article>
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="comment-12905">
<article id="article-comment-12905">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">D</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">August 05, 2023 at 9:27 am</time></p> </header>
<div class="comment-content">
<p><img class="wprm-comment-rating" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="https://izzycooking.com/wp-content/plugins/wp-recipe-maker/assets/icons/rating/stars-5.svg" alt="5 stars" width="80" height="16" /><br />
Can you use double stuffed Oreos?</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-12905' data-commentid="12905" data-postid="87" data-belowelement="article-comment-12905" data-respondelement="respond" data-replyto="Reply to D" aria-label='Reply to D'>Reply</a></div>
</article>
<ul class="children">
<li class="comment byuser comment-author-izzycooking bypostauthor odd alt depth-2" id="comment-13176">
<article id="article-comment-13176">
<header class="comment-header">
<p class="comment-author">
<span class="comment-author-name">Izzy</span> <span class="says">says</span> </p>
<p class="comment-meta"><time class="comment-time">September 18, 2023 at 3:17 pm</time></p> </header>
<div class="comment-content">
<p>Yes, you can use double stuffed oreos.</p>
</div>
<div class="comment-reply"><a rel='nofollow' class='comment-reply-link' href='#comment-13176' data-commentid="13176" data-postid="87" data-belowelement="article-comment-13176" data-respondelement="respond" data-replyto="Reply to Izzy" aria-label='Reply to Izzy'>Reply</a></div>
</article>
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
</ol></div> <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="/oreo-cheesecake-bites/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://izzycooking.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-948293196">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: -19px !important; width: 22px !important; height: 22px !important;" checked="checked"><span aria-hidden="true" style="width: 110px !important; height: 22px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="110px" height="16px" viewBox="0 0 165 33">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-0" fill="none" stroke="#f5a623" 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.5" y="4.5" />
<use xlink:href="#wprm-star-empty-0" x="37.5" y="4.5" />
<use xlink:href="#wprm-star-empty-0" x="70.5" y="4.5" />
<use xlink:href="#wprm-star-empty-0" x="103.5" y="4.5" />
<use xlink:href="#wprm-star-empty-0" x="136.5" y="4.5" />
</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: 22px !important; height: 22px !important;"><span aria-hidden="true" style="width: 110px !important; height: 22px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="110px" height="16px" viewBox="0 0 165 33">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-1" fill="none" stroke="#f5a623" 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="#f5a623" 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.5" y="4.5" />
<use xlink:href="#wprm-star-empty-1" x="37.5" y="4.5" />
<use xlink:href="#wprm-star-empty-1" x="70.5" y="4.5" />
<use xlink:href="#wprm-star-empty-1" x="103.5" y="4.5" />
<use xlink:href="#wprm-star-empty-1" x="136.5" y="4.5" />
</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: 22px !important; height: 22px !important;"><span aria-hidden="true" style="width: 110px !important; height: 22px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="110px" height="16px" viewBox="0 0 165 33">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-2" fill="none" stroke="#f5a623" 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="#f5a623" 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.5" y="4.5" />
<use xlink:href="#wprm-star-full-2" x="37.5" y="4.5" />
<use xlink:href="#wprm-star-empty-2" x="70.5" y="4.5" />
<use xlink:href="#wprm-star-empty-2" x="103.5" y="4.5" />
<use xlink:href="#wprm-star-empty-2" x="136.5" y="4.5" />
</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: 22px !important; height: 22px !important;"><span aria-hidden="true" style="width: 110px !important; height: 22px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="110px" height="16px" viewBox="0 0 165 33">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-3" fill="none" stroke="#f5a623" 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="#f5a623" 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.5" y="4.5" />
<use xlink:href="#wprm-star-full-3" x="37.5" y="4.5" />
<use xlink:href="#wprm-star-full-3" x="70.5" y="4.5" />
<use xlink:href="#wprm-star-empty-3" x="103.5" y="4.5" />
<use xlink:href="#wprm-star-empty-3" x="136.5" y="4.5" />
</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: 22px !important; height: 22px !important;"><span aria-hidden="true" style="width: 110px !important; height: 22px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="110px" height="16px" viewBox="0 0 165 33">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-4" fill="none" stroke="#f5a623" 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="#f5a623" 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.5" y="4.5" />
<use xlink:href="#wprm-star-full-4" x="37.5" y="4.5" />
<use xlink:href="#wprm-star-full-4" x="70.5" y="4.5" />
<use xlink:href="#wprm-star-full-4" x="103.5" y="4.5" />
<use xlink:href="#wprm-star-empty-4" x="136.5" y="4.5" />
</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-948293196" style="width: 22px !important; height: 22px !important;"><span aria-hidden="true" style="width: 110px !important; height: 22px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="110px" height="16px" viewBox="0 0 165 33">
<defs>
<path class="wprm-star-full" id="wprm-star-full-5" fill="#f5a623" 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.5" y="4.5" />
<use xlink:href="#wprm-star-full-5" x="37.5" y="4.5" />
<use xlink:href="#wprm-star-full-5" x="70.5" y="4.5" />
<use xlink:href="#wprm-star-full-5" x="103.5" y="4.5" />
<use xlink:href="#wprm-star-full-5" x="136.5" y="4.5" />
</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="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='87' 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="232a34671c" /></p><p style="display: none !important;"><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="132"/><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" id="genesis-sidebar-primary"><h2 class="genesis-sidebar-title screen-reader-text">Primary Sidebar</h2><div class="feast-modern-sidebar">
<div class="wp-block-group feast-about-author is-layout-flow wp-block-group-is-layout-flow"><div class="wp-block-group__inner-container">
<div class="wp-block-image"><figure class="aligncenter size-full"><img width="800" height="732" data-pin-nopin="true" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20800%20732'%3E%3C/svg%3E" alt="" class="wp-image-29480" data-lazy-src="https://izzycooking.com/wp-content/uploads/2022/04/about-izzycooking.jpg"/><noscript><img width="800" height="732" data-pin-nopin="true" src="https://izzycooking.com/wp-content/uploads/2022/04/about-izzycooking.jpg" alt="" class="wp-image-29480"/></noscript></figure></div>
<p><strong>Hi, this is Izzy! On my blog, you will find easy and delicious recipes for the everyday home cook, with easy-to-follow instructions and step-by-step photos.</strong></p>
<p class="has-text-align-center"><a href="/about">More about me →</a></p>
</div></div>
<form role="search" method="get" action="https://izzycooking.com/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search"><label class="wp-block-search__label" for="wp-block-search__input-6" >Search</label><div class="wp-block-search__inside-wrapper " ><input class="wp-block-search__input" id="wp-block-search__input-6" placeholder="" value="" type="search" name="s" required /><button aria-label="Search" class="wp-block-search__button wp-element-button" type="submit" >Search</button></div></form>
<h3 class="wp-block-heading" id="h-popular">Popular</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://izzycooking.com/summer-dinner-ideas/" style="text-decoration: none;"><img width="500" height="500" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20500%20500'%3E%3C/svg%3E" class=" wp-post-image" alt="We've rounded up the 16 Best Summer Dinner Ideas for you to cook on a hot summer night. From classic and easy, to healthy, vegetarian - we’ve even thrown in some delicious kid-friendly recipes too!! Summer lovin’!!!" decoding="async" data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2021/05/Summer-Dinner-Ideas-500x500.jpg 500w, https://izzycooking.com/wp-content/uploads/2021/05/Summer-Dinner-Ideas-150x150.jpg 150w, https://izzycooking.com/wp-content/uploads/2021/05/Summer-Dinner-Ideas-320x320.jpg 320w" data-lazy-sizes="(max-width: 500px) 100vw, 500px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2021/05/Summer-Dinner-Ideas-500x500.jpg" /><noscript><img width="500" height="500" src="https://izzycooking.com/wp-content/uploads/2021/05/Summer-Dinner-Ideas-500x500.jpg" class=" wp-post-image" alt="We've rounded up the 16 Best Summer Dinner Ideas for you to cook on a hot summer night. From classic and easy, to healthy, vegetarian - we’ve even thrown in some delicious kid-friendly recipes too!! Summer lovin’!!!" decoding="async" data-pin-nopin="true" aria-hidden="true" srcset="https://izzycooking.com/wp-content/uploads/2021/05/Summer-Dinner-Ideas-500x500.jpg 500w, https://izzycooking.com/wp-content/uploads/2021/05/Summer-Dinner-Ideas-150x150.jpg 150w, https://izzycooking.com/wp-content/uploads/2021/05/Summer-Dinner-Ideas-320x320.jpg 320w" sizes="(max-width: 500px) 100vw, 500px" /></noscript><div class="fsri-title">40 Easy Summer Dinner Ideas for Hot Summer Nights</div></a></li><li class="listing-item"><a href="https://izzycooking.com/sides-for-grilled-chicken/" style="text-decoration: none;"><img width="500" height="500" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20500%20500'%3E%3C/svg%3E" class=" wp-post-image" alt="When preparing a summer BBQ, you know that the delicious side dishes will take your grilling experience to the next level. We’ve collected 36 best and easy Sides for Grilled Chicken, or steaks! From healthy sides like salads to traditional favorites like French fries, we’ve thrown in a few choices you would have never, ever, imagined." decoding="async" data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-500x500.jpg 500w, https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-150x150.jpg 150w, https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-720x720.jpg 720w, https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-360x360.jpg 360w, https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-180x180.jpg 180w" data-lazy-sizes="(max-width: 500px) 100vw, 500px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-500x500.jpg" /><noscript><img width="500" height="500" src="https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-500x500.jpg" class=" wp-post-image" alt="When preparing a summer BBQ, you know that the delicious side dishes will take your grilling experience to the next level. We’ve collected 36 best and easy Sides for Grilled Chicken, or steaks! From healthy sides like salads to traditional favorites like French fries, we’ve thrown in a few choices you would have never, ever, imagined." decoding="async" data-pin-nopin="true" aria-hidden="true" srcset="https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-500x500.jpg 500w, https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-150x150.jpg 150w, https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-720x720.jpg 720w, https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-360x360.jpg 360w, https://izzycooking.com/wp-content/uploads/2023/10/Sides-for-Grilled-Chicken-collage-180x180.jpg 180w" sizes="(max-width: 500px) 100vw, 500px" /></noscript><div class="fsri-title">26 Best Sides For Grilled Chicken (For Wings, Breasts, Thighs, and More)</div></a></li><li class="listing-item"><a href="https://izzycooking.com/how-long-to-cook-a-turkey-breast/" style="text-decoration: none;"><img width="500" height="500" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20500%20500'%3E%3C/svg%3E" class=" wp-post-image" alt="Learn how long to cook a turkey breast so it’s perfectly tender and juicy! If you’re having a small Thanksgiving dinner, a turkey breast is a perfect choice. We’ll cover the temperature for baking turkey breasts in the oven and how to check doneness. One average turkey breast is enough meat for about 5 servings, making it ideal for your weekly meal prep" decoding="async" data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2021/11/Turkey-Breasts-1-500x500.jpg 500w, https://izzycooking.com/wp-content/uploads/2021/11/Turkey-Breasts-1-150x150.jpg 150w, https://izzycooking.com/wp-content/uploads/2021/11/Turkey-Breasts-1-320x320.jpg 320w" data-lazy-sizes="(max-width: 500px) 100vw, 500px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2021/11/Turkey-Breasts-1-500x500.jpg" /><noscript><img width="500" height="500" src="https://izzycooking.com/wp-content/uploads/2021/11/Turkey-Breasts-1-500x500.jpg" class=" wp-post-image" alt="Learn how long to cook a turkey breast so it’s perfectly tender and juicy! If you’re having a small Thanksgiving dinner, a turkey breast is a perfect choice. We’ll cover the temperature for baking turkey breasts in the oven and how to check doneness. One average turkey breast is enough meat for about 5 servings, making it ideal for your weekly meal prep" decoding="async" data-pin-nopin="true" aria-hidden="true" srcset="https://izzycooking.com/wp-content/uploads/2021/11/Turkey-Breasts-1-500x500.jpg 500w, https://izzycooking.com/wp-content/uploads/2021/11/Turkey-Breasts-1-150x150.jpg 150w, https://izzycooking.com/wp-content/uploads/2021/11/Turkey-Breasts-1-320x320.jpg 320w" sizes="(max-width: 500px) 100vw, 500px" /></noscript><div class="fsri-title">How Long To Cook A Turkey Breast Per Pound</div></a></li><li class="listing-item"><a href="https://izzycooking.com/slow-cooker-chicken-recipes/" style="text-decoration: none;"><img width="500" height="500" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20500%20500'%3E%3C/svg%3E" class=" wp-post-image" alt="The crockpot is so versatile and you can rely on it for making all your favorite Slow Cooker Chicken Recipes! We’ll delve into chicken breasts, chicken thighs, whole chicken, healthy, and popular chicken recipes…easily cooked in a slow cooker!" decoding="async" data-pin-nopin="true" aria-hidden="true" data-lazy-srcset="https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-500x500.jpg 500w, https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-150x150.jpg 150w, https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-720x720.jpg 720w, https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-360x360.jpg 360w, https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-180x180.jpg 180w" data-lazy-sizes="(max-width: 500px) 100vw, 500px" data-lazy-src="https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-500x500.jpg" /><noscript><img width="500" height="500" src="https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-500x500.jpg" class=" wp-post-image" alt="The crockpot is so versatile and you can rely on it for making all your favorite Slow Cooker Chicken Recipes! We’ll delve into chicken breasts, chicken thighs, whole chicken, healthy, and popular chicken recipes…easily cooked in a slow cooker!" decoding="async" data-pin-nopin="true" aria-hidden="true" srcset="https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-500x500.jpg 500w, https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-150x150.jpg 150w, https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-720x720.jpg 720w, https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-360x360.jpg 360w, https://izzycooking.com/wp-content/uploads/2023/10/Slow-Cooker-Chicken-Recipes-collage-180x180.jpg 180w" sizes="(max-width: 500px) 100vw, 500px" /></noscript><div class="fsri-title">36 Best Easy Slow Cooker Chicken Recipes</div></a></li></ul></div></div></aside></div></div><footer class="site-footer"><div class="wrap"><h2 class="screen-reader-text">Footer</h2><div class="feast-modern-footer">
<p class="has-text-align-center feast-button"><a href="#">↑ back to top</a></p>
<div class="wp-block-columns is-layout-flex wp-container-10 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h3 class="wp-block-heading">About</h3>
<ul><li><a href="https://izzycooking.com/privacy-policy/">Privacy Policy</a></li><li><a href="https://izzycooking.com/contact">Contact</a></li></ul>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<h3 class="wp-block-heading">Newsletter</h3>
<ul><li><a href="http://izzycooking.com/contact">Sign Up!</a> for emails and updates</li></ul>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>
<p class="has-text-align-center">Copyright © 2022 - Izzycooking</p>
</div></div></footer></div><div id="mv-grow-data" data-settings='{"general":{"contentSelector":false,"show_count":{"content":false,"sidebar":true},"isTrellis":false},"post":{"ID":87,"categories":[{"ID":2}]},"shareCounts":{"pinterest":563889},"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"]},"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"]}},"inlineContentHook":["genesis_loop","loop_start"]}'></div><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-94":{"id":94,"type":"food","name":"Oreo Cheesecake Bites Recipe (+Video)"}}</script><style type="text/css" media="screen">#simple-social-icons-2 ul li a, #simple-social-icons-2 ul li a:hover, #simple-social-icons-2 ul li a:focus { background-color: #ffffff !important; border-radius: 0px; color: #399999 !important; border: 0px #ffffff solid !important; font-size: 16px; padding: 8px; } #simple-social-icons-2 ul li a:hover, #simple-social-icons-2 ul li a:focus { background-color: #159999 !important; border-color: #ffffff !important; color: #ffffff !important; } #simple-social-icons-2 ul li a:focus { outline: 1px dotted #159999 !important; } #simple-social-icons-2 ul li a, #simple-social-icons-2 ul li a:hover, #simple-social-icons-2 ul li a:focus { background-color: #ffffff !important; border-radius: 0px; color: #399999 !important; border: 0px #ffffff solid !important; font-size: 16px; padding: 8px; } #simple-social-icons-2 ul li a:hover, #simple-social-icons-2 ul li a:focus { background-color: #159999 !important; border-color: #ffffff !important; color: #ffffff !important; } #simple-social-icons-2 ul li a:focus { outline: 1px dotted #159999 !important; }</style><link rel='preload' href='https://izzycooking.com/wp-content/plugins/luckywp-table-of-contents/front/assets/main.min.css?ver=2.1.4' data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.removeAttribute('data-rocket-async')" type='text/css' media='all' />
<style id='core-block-supports-inline-css' type='text/css'>
.wp-block-gallery.wp-block-gallery-3{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-container-10.wp-container-10{flex-wrap:nowrap;}
</style>
<script type='text/javascript' id='wprm-public-js-extra'>
/* <![CDATA[ */
var wprm_public = {"endpoints":{"analytics":"https:\/\/izzycooking.com\/wp-json\/wp-recipe-maker\/v1\/analytics"},"settings":{"features_comment_ratings":true,"template_color_comment_rating":"#f5a623","instruction_media_toggle_default":"on","video_force_ratio":false,"analytics_enabled":false,"google_analytics_enabled":false,"print_new_tab":true},"post_id":"87","home_url":"https:\/\/izzycooking.com\/","print_slug":"wprm_print","permalinks":"\/%postname%\/","ajax_url":"https:\/\/izzycooking.com\/wp-admin\/admin-ajax.php","nonce":"e9b5a1e6ce","api_nonce":"fcea7a2da9","translations":[]};
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://izzycooking.com/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=8.10.3' id='wprm-public-js' defer></script>
<script type='text/javascript' id='convertkit-broadcasts-js-extra'>
/* <![CDATA[ */
var convertkit_broadcasts = {"ajax_url":"https:\/\/izzycooking.com\/wp-admin\/admin-ajax.php","action":"convertkit_broadcasts_render","debug":""};
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://izzycooking.com/wp-content/plugins/convertkit/resources/frontend/js/broadcasts.js?ver=2.2.9' id='convertkit-broadcasts-js' defer></script>
<script type='text/javascript' id='convertkit-js-js-extra'>
/* <![CDATA[ */
var convertkit = {"ajaxurl":"https:\/\/izzycooking.com\/wp-admin\/admin-ajax.php","debug":"","nonce":"f6aa22705a","subscriber_id":"","tag":"","post_id":"87"};
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://izzycooking.com/wp-content/plugins/convertkit/resources/frontend/js/convertkit.js?ver=2.2.9' id='convertkit-js-js' defer></script>
<script type='text/javascript' async data-noptimize src='https://izzycooking.com/wp-content/plugins/social-pug/assets/dist/front-end-free.1.20.1.js?ver=1.20.1' id='dpsp-frontend-js-pro-js'></script>
<script type='text/javascript' id='wprmp-public-js-extra'>
/* <![CDATA[ */
var wprmp_public = {"endpoints":{"private_notes":"https:\/\/izzycooking.com\/wp-json\/wp-recipe-maker\/v1\/private-notes"},"settings":{"recipe_template_mode":"modern","features_adjustable_servings":true,"adjustable_servings_round_to_decimals":"2","unit_conversion_remember":true,"unit_conversion_temperature":"none","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":false,"decimal_separator":"point","features_comment_ratings":true,"features_user_ratings":false,"user_ratings_thank_you_message":"Thank you for voting!","user_ratings_force_comment":"never","user_ratings_force_comment_scroll_to":"","servings_changer_display":"tooltip_slider","template_ingredient_list_style":"checkbox","template_instruction_list_style":"decimal","template_color_icon":"#343434"},"timer":{"sound_file":"https:\/\/izzycooking.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":268435456,"text":{"image_size":"The image file is too large"}}};
/* ]]> */
</script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://izzycooking.com/wp-content/plugins/wp-recipe-maker-premium/dist/public-pro.js?ver=8.10.1' id='wprmp-public-js' defer></script>
<script type="rocketlazyloadscript" id="rocket-browser-checker-js-after" data-rocket-type="text/javascript">
"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 type='text/javascript' id='rocket-preload-links-js-extra'>
/* <![CDATA[ */
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:\/\/izzycooking.com","onHoverDelay":"100","rateThrottle":"3"};
/* ]]> */
</script>
<script type="rocketlazyloadscript" id="rocket-preload-links-js-after" data-rocket-type="text/javascript">
(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 type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://izzycooking.com/wp-includes/js/comment-reply.min.js?ver=6.3.1' id='comment-reply-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://izzycooking.com/wp-content/themes/genesis/lib/js/skip-links.min.js?ver=3.4.0' id='skip-links-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-type='text/javascript' data-rocket-src='https://izzycooking.com/wp-content/plugins/luckywp-table-of-contents/front/assets/main.min.js?ver=2.1.4' id='lwptoc-main-js' defer></script>
<script type="rocketlazyloadscript" defer data-rocket-type='text/javascript' data-rocket-src='https://izzycooking.com/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1694692551' id='akismet-frontend-js'></script>
<style>.lwptoc .lwptoc_i{background-color:#ededed;border:1px solid #bababa;}.lwptoc_header{color:#000000;}</style><script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload",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://izzycooking.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script>"use strict";function wprRemoveCPCSS(){var preload_stylesheets=document.querySelectorAll('link[data-rocket-async="style"][rel="preload"]');if(preload_stylesheets&&0<preload_stylesheets.length)for(var stylesheet_index=0;stylesheet_index<preload_stylesheets.length;stylesheet_index++){var media=preload_stylesheets[stylesheet_index].getAttribute("media")||"all";if(window.matchMedia(media).matches)return void setTimeout(wprRemoveCPCSS,200)}var elem=document.getElementById("rocket-critical-css");elem&&"remove"in elem&&elem.remove()}window.addEventListener?window.addEventListener("load",wprRemoveCPCSS):window.attachEvent&&window.attachEvent("onload",wprRemoveCPCSS);</script><noscript><link rel='stylesheet' id='wprm-public-css' href='https://izzycooking.com/wp-content/plugins/wp-recipe-maker/dist/public-modern.css?ver=8.10.3' type='text/css' media='all' /><link rel='stylesheet' id='brunch-pro-theme-css' href='https://izzycooking.com/wp-content/themes/brunchpro-v442/style.css?ver=4.4.2' type='text/css' media='all' /><link rel='stylesheet' id='wp-block-library-css' href='https://izzycooking.com/wp-includes/css/dist/block-library/style.min.css?ver=6.3.1' type='text/css' media='all' /><link rel='stylesheet' id='convertkit-broadcasts-css' href='https://izzycooking.com/wp-content/plugins/convertkit/resources/frontend/css/broadcasts.css?ver=2.2.9' type='text/css' media='all' /><link rel='stylesheet' id='convertkit-button-css' href='https://izzycooking.com/wp-content/plugins/convertkit/resources/frontend/css/button.css?ver=2.2.9' type='text/css' media='all' /><link rel='stylesheet' id='dpsp-frontend-style-pro-css' href='https://izzycooking.com/wp-content/plugins/social-pug/assets/dist/style-frontend-pro.1.20.1.css?ver=1.20.1' type='text/css' media='all' /><link rel='stylesheet' id='wprmp-public-css' href='https://izzycooking.com/wp-content/plugins/wp-recipe-maker-premium/dist/public-pro.css?ver=8.10.1' type='text/css' media='all' /><link rel='stylesheet' id='simple-social-icons-font-css' href='https://izzycooking.com/wp-content/plugins/simple-social-icons/css/style.css?ver=3.0.2' type='text/css' media='all' /><link rel='stylesheet' id='inc-frontend-css' href='https://izzycooking.com/wp-content/plugins/imark-interactive-toolkit/frontend/css/inc-frontend-style.css?ver=2.3.10' type='text/css' media='all' /><link rel='stylesheet' id='imp-frontend-css' href='https://izzycooking.com/wp-content/plugins/imark-interactive-toolkit/frontend/css/imp-frontend-style.css?ver=2.3.10' type='text/css' media='all' /><link rel='stylesheet' id='lwptoc-main-css' href='https://izzycooking.com/wp-content/plugins/luckywp-table-of-contents/front/assets/main.min.css?ver=2.1.4' type='text/css' media='all' /></noscript><script defer src="https://static.cloudflareinsights.com/beacon.min.js/v8b253dfea2ab4077af8c6f58422dfbfd1689876627854" integrity="sha512-bjgnUKX4azu3dLTVtie9u6TKqgx29RBwfj3QXYt5EKfWM/9hPSAI/4qcV5NACjwAo8UtTeWefx6Zq5PHcMm7Tg==" data-cf-beacon='{"rayId":"8141fd842fd742dd","version":"2023.8.0","b":1,"token":"552fcd7f843f42a09d74e06420662ea8","si":100}' 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@1696957197 -->
|