CINXE.COM

Bee Pollen, Royal Jelly, and Propolis | Quackwatch

<!DOCTYPE html> <html class="no-js" lang="en-US"> <head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="pingback" href="https://quackwatch.org/xmlrpc.php" /> <link rel="stylesheet" href="https://use.typekit.net/lmm6ycy.css"> <link rel="apple-touch-icon" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-iphone-60x60.png"> <link rel="apple-touch-icon" sizes="60x60" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-ipad-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-iphone-retina-120x120.png"> <link rel="apple-touch-icon" sizes="144x144" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-ipad-retina-152x152.png"> <!--wordpress head--> <title>Bee Pollen, Royal Jelly, and Propolis | Quackwatch</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//centerforinquiry.org' /> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel="alternate" type="application/rss+xml" title="Quackwatch &raquo; Feed" href="https://quackwatch.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="Quackwatch &raquo; Comments Feed" href="https://quackwatch.org/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="Quackwatch &raquo; Bee Pollen, Royal Jelly, and Propolis Comments Feed" href="https://quackwatch.org/related/dsh/bee/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/quackwatch.org\/wp-includes\/js\/wp-emoji.js?ver=6.6.2","twemoji":"https:\/\/quackwatch.org\/wp-includes\/js\/twemoji.js?ver=6.6.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://quackwatch.org/wp-includes/css/dist/block-library/style.css?ver=6.6.2' type='text/css' media='all' /> <style id='wp-block-library-theme-inline-css' type='text/css'> .wp-block-audio :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-audio :where(figcaption){ color:#ffffffa6; } .wp-block-audio{ margin:0 0 1em; } .wp-block-code{ border:1px solid #ccc; border-radius:4px; font-family:Menlo,Consolas,monaco,monospace; padding:.8em 1em; } .wp-block-embed :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-embed :where(figcaption){ color:#ffffffa6; } .wp-block-embed{ margin:0 0 1em; } .blocks-gallery-caption{ color:#555; font-size:13px; text-align:center; } .is-dark-theme .blocks-gallery-caption{ color:#ffffffa6; } :root :where(.wp-block-image figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme :root :where(.wp-block-image figcaption){ color:#ffffffa6; } .wp-block-image{ margin:0 0 1em; } .wp-block-pullquote{ border-bottom:4px solid; border-top:4px solid; color:currentColor; margin-bottom:1.75em; } .wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{ color:currentColor; font-size:.8125em; font-style:normal; text-transform:uppercase; } .wp-block-quote{ border-left:.25em solid; margin:0 0 1.75em; padding-left:1em; } .wp-block-quote cite,.wp-block-quote footer{ color:currentColor; font-size:.8125em; font-style:normal; position:relative; } .wp-block-quote.has-text-align-right{ border-left:none; border-right:.25em solid; padding-left:0; padding-right:1em; } .wp-block-quote.has-text-align-center{ border:none; padding-left:0; } .wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{ border:none; } .wp-block-search .wp-block-search__label{ font-weight:700; } .wp-block-search__button{ border:1px solid #ccc; padding:.375em .625em; } :where(.wp-block-group.has-background){ padding:1.25em 2.375em; } .wp-block-separator.has-css-opacity{ opacity:.4; } .wp-block-separator{ border:none; border-bottom:2px solid; margin-left:auto; margin-right:auto; } .wp-block-separator.has-alpha-channel-opacity{ opacity:1; } .wp-block-separator:not(.is-style-wide):not(.is-style-dots){ width:100px; } .wp-block-separator.has-background:not(.is-style-dots){ border-bottom:none; height:1px; } .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){ height:2px; } .wp-block-table{ margin:0 0 1em; } .wp-block-table td,.wp-block-table th{ word-break:normal; } .wp-block-table :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-table :where(figcaption){ color:#ffffffa6; } .wp-block-video :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-video :where(figcaption){ color:#ffffffa6; } .wp-block-video{ margin:0 0 1em; } :root :where(.wp-block-template-part.has-background){ margin-bottom:0; margin-top:0; padding:1.25em 2.375em; } </style> <style id='pdfemb-pdf-embedder-viewer-style-inline-css' type='text/css'> .wp-block-pdfemb-pdf-embedder-viewer{max-width:none} </style> <link rel='stylesheet' id='awsm-ead-public-css' href='https://quackwatch.org/wp-content/plugins/embed-any-document/css/embed-public.min.css?ver=2.7.4' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #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--color--cfi-blue: #084d93;--wp--preset--color--cfi-orange: #ea5213;--wp--preset--color--cfi-gray: #dadada;--wp--preset--color--cfi-black: #333333;--wp--preset--color--cfi-tan: #dedbc3;--wp--preset--color--rdf-blue: #1f2b59;--wp--preset--color--csh-blue: #26a4dd;--wp--preset--color--csh-purple: #414a9c;--wp--preset--color--csi-green: #379944;--wp--preset--color--cfi-ig-blue: #4198f0;--wp--preset--color--poi-blue: #14325a;--wp--preset--color--poi-gold: #be9e50;--wp--preset--color--tp-orange: #c64417;--wp--preset--color--sr-red: #741e23;--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-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){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;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='gutenberg-color-style-css' href='https://quackwatch.org/wp-content/plugins/cfi-colors/includes/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='ub-extension-style-css-css' href='https://quackwatch.org/wp-content/plugins/ultimate-blocks/src/extensions/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='search-filter-plugin-styles-css' href='https://quackwatch.org/wp-content/plugins/search-filter-pro/public/assets/css/search-filter.min.css?ver=2.5.18' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-basic4-wp-main-css' href='https://quackwatch.org/wp-content/themes/quackwatch/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap4-css' href='https://quackwatch.org/wp-content/themes/bootstrap-basic4/assets/css/bootstrap.min.css?ver=4.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-basic4-font-awesome5-css' href='https://quackwatch.org/wp-content/themes/bootstrap-basic4/assets/fontawesome/css/all.min.css?ver=5.15.4' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-basic4-main-css' href='https://quackwatch.org/wp-content/themes/bootstrap-basic4/assets/css/main.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='newsletter-css' href='https://quackwatch.org/wp-content/plugins/newsletter/style.css?ver=8.5.5' type='text/css' media='all' /> <link rel='stylesheet' id='parent-style-css' href='https://quackwatch.org/wp-content/themes/bootstrap-basic4/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='cfi-style-css' href='https://quackwatch.org/wp-content/themes/css/style.css?ver=1703709909' type='text/css' media='all' /> <link rel='stylesheet' id='child-style-css' href='https://quackwatch.org/wp-content/themes/quackwatch/style.css?ver=1654895920' type='text/css' media='all' /> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" id="search-filter-plugin-build-js-extra"> /* <![CDATA[ */ var SF_LDATA = {"ajax_url":"https:\/\/quackwatch.org\/wp-admin\/admin-ajax.php","home_url":"https:\/\/quackwatch.org\/","extensions":[]}; /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/search-filter-pro/public/assets/js/search-filter-build.min.js?ver=2.5.18" id="search-filter-plugin-build-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/search-filter-pro/public/assets/js/chosen.jquery.min.js?ver=2.5.18" id="search-filter-plugin-chosen-js"></script> <script type="text/javascript" src="https://centerforinquiry.org/js/new/main_init.js?ver=6.6.2" id="general-js"></script> <script type="text/javascript" src="https://centerforinquiry.org/wp-content/themes/quackwatch/js/copy-link-plugin/comp-copy-qw.js?ver=6.6.2" id="copy-js"></script> <script type="text/javascript" src="https://centerforinquiry.org/wp-content/themes/quackwatch/js/select-switch-plugin/selectSwitch-comp-qw.js?ver=6.6.2" id="navigation-js"></script> <script type="text/javascript" src="https://quackwatch.org/js/everyactionmembership.js?ver=1" id="custom_form_js-js"></script> <!-- Google tag (gtag.js) snippet added by Site Kit --> <!-- Google Analytics snippet added by Site Kit --> <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-W6KCHQH" id="google_gtagjs-js" async></script> <script type="text/javascript" id="google_gtagjs-js-after"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);} gtag("set","linker",{"domains":["quackwatch.org"]}); gtag("js", new Date()); gtag("set", "developer_id.dZTNiMT", true); gtag("config", "GT-W6KCHQH"); /* ]]> */ </script> <!-- End Google tag (gtag.js) snippet added by Site Kit --> <link rel="https://api.w.org/" href="https://quackwatch.org/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://quackwatch.org/wp-json/wp/v2/pages/13280" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://quackwatch.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.6.2" /> <link rel='shortlink' href='https://quackwatch.org/?p=13280' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://quackwatch.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fquackwatch.org%2Frelated%2Fdsh%2Fbee%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://quackwatch.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fquackwatch.org%2Frelated%2Fdsh%2Fbee%2F&#038;format=xml" /> <meta name="generator" content="Site Kit by Google 1.135.0" /> <style></style> <!-- SEO meta tags powered by SmartCrawl https://wpmudev.com/project/smartcrawl-wordpress-seo/ --> <link rel="canonical" href="https://quackwatch.org/related/dsh/bee/" /> <meta name="description" content="&quot;Bee pollen&quot; is actually pollen from flowers that is collected from bees as they enter the hive or is harvested by other means. Pollen granules st ..." /> <script type="application/ld+json">{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/quackwatch.org\/#schema-publishing-organization","url":"https:\/\/quackwatch.org","name":"Quackwatch"},{"@type":"WebSite","@id":"https:\/\/quackwatch.org\/#schema-website","url":"https:\/\/quackwatch.org","name":"Quackwatch","encoding":"UTF-8","potentialAction":{"@type":"SearchAction","target":"https:\/\/quackwatch.org\/search\/{search_term_string}\/","query-input":"required name=search_term_string"}},{"@type":"BreadcrumbList","@id":"https:\/\/quackwatch.org\/related\/DSH\/bee?page&pagename=related\/DSH\/bee\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quackwatch.org"},{"@type":"ListItem","position":2,"name":"Related Topics","item":"https:\/\/quackwatch.org\/related\/"},{"@type":"ListItem","position":3,"name":"DSH","item":"https:\/\/quackwatch.org\/related\/dsh\/"},{"@type":"ListItem","position":4,"name":"Bee Pollen, Royal Jelly, and Propolis"}]},{"@type":"Person","@id":"https:\/\/quackwatch.org\/author\/mkreidler\/#schema-author","name":"Marc kreidler","url":"https:\/\/quackwatch.org\/author\/mkreidler\/"},{"@type":"WebPage","@id":"https:\/\/quackwatch.org\/related\/dsh\/bee\/#schema-webpage","isPartOf":{"@id":"https:\/\/quackwatch.org\/#schema-website"},"publisher":{"@id":"https:\/\/quackwatch.org\/#schema-publishing-organization"},"url":"https:\/\/quackwatch.org\/related\/dsh\/bee\/"},{"@type":"Article","mainEntityOfPage":{"@id":"https:\/\/quackwatch.org\/related\/dsh\/bee\/#schema-webpage"},"author":{"@id":"https:\/\/quackwatch.org\/author\/mkreidler\/#schema-author"},"publisher":{"@id":"https:\/\/quackwatch.org\/#schema-publishing-organization"},"dateModified":"1999-09-17T00:00:00","datePublished":"1999-09-17T00:00:00","headline":"Bee Pollen, Royal Jelly, and Propolis | Quackwatch","description":"&quot;Bee pollen&quot; is actually pollen from flowers that is collected from bees as they enter the hive or is harvested by other means. Pollen granules st ...","name":"Bee Pollen, Royal Jelly, and Propolis"}]}</script> <meta property="og:type" content="article" /> <meta property="og:url" content="https://quackwatch.org/related/dsh/bee/" /> <meta property="og:title" content="Bee Pollen, Royal Jelly, and Propolis | Quackwatch" /> <meta property="og:description" content="&quot;Bee pollen&quot; is actually pollen from flowers that is collected from bees as they enter the hive or is harvested by other means. Pollen granules st ..." /> <meta property="article:published_time" content="1999-09-17T00:00:00" /> <meta property="article:author" content="Marc kreidler" /> <meta name="twitter:card" content="summary" /> <meta name="twitter:title" content="Bee Pollen, Royal Jelly, and Propolis | Quackwatch" /> <meta name="twitter:description" content="&quot;Bee pollen&quot; is actually pollen from flowers that is collected from bees as they enter the hive or is harvested by other means. Pollen granules st ..." /> <!-- /SEO --> <!--end wordpress head--> <script src="https://kit.fontawesome.com/11edc66555.js" crossorigin="anonymous"></script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-102208537-17"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-102208537-17'); </script> </head> <body class="page-template-default page page-id-13280 page-child parent-pageid-13088 wp-embed-responsive"> <div id="top" class="wrapper"> <div class="container-fluid page-container blue d-block d-print-none" style="padding-left: 0px !important; padding-right: 0px !important;"> <header class="page-header page-header-sitebrand-topbar"> <nav class="navbar navbar-expand-lg navbar-dark row"> <div class="col-12 col-lg-8"> <a class="navbar-brand" href="https://quackwatch.org/" title="Quackwatch" rel="home"> <img src="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2019/12/22174957/quackwatch-duck-full.png" alt="quackwatch-duck" id="site-logo" /> <div> <h5>Quackwatch</h5> <p class="d-none d-md-block">Your Guide to Quackery, Health Fraud, and Intelligent Decisions</p> </div> </a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul id="menu-main" class="navbar-nav mr-lg-auto"><li id="menu-item-15567" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15567 nav-item"><a href="https://quackwatch.org/about/navigate/" class="nav-link menu-item menu-item-type-post_type menu-item-object-page">Navigation Guide</a></li> <li id="menu-item-15574" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15574 nav-item"><a href="https://quackwatch.org/about/chd/" class="nav-link menu-item menu-item-type-post_type menu-item-object-page">Newsletter</a></li> <li id="menu-item-15572" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15572 nav-item"><a href="http://lists.quackwatch.org/mailman/listinfo/healthfraud_lists.quackwatch.org" class="nav-link menu-item menu-item-type-custom menu-item-object-custom">Discussion List</a></li> </ul> <!--Search & Display for Mobile--> <div id="header-extras" class="d-flex flex-column align-items-center d-lg-none"> <a href="https://quackwatch.org/support-cfi/" style="text-decoration: none;"><button class="white-btn-on-red">Donate</button></a> <form class="form-inline my-3" method="get" action="https://quackwatch.org/"> <input class="form-control mr-2" type="search" name="s" value="" placeholder="Search" aria-label="Search"> <button class="btn btn-dark" type="submit">Search</button> </form> <select> <option value="#">Visit Our Affiliated Sites</option> <option value="quackwatch">Quackwatch</option> <option value="acupuncture">Acupuncture Watch</option> <option value="allergy">Allergy Watch</option> <option value="autism">Autism Watch</option> <option value="cancer">Cancer Treatment Watch</option> <option value="cases">Casewatch</option> <option value="chelation">Chelation Watch</option> <option value="chiro">Chirobase</option> <option value="credential">Credential Watch</option> <option value="dental">Dental Watch</option> <option value="device">Device Watch</option> <option value="diet">Diet Scam Watch</option> <option value="fibro">Fibromyalgia Watch</option> <option value="homeo">Homeowatch</option> <option value="info">Infomercial Watch</option> <option value="ihealth">Internet Health Pilot</option> <option value="mental">Mental Health Watch</option> <option value="mlm">MLM Watch</option> <option value="naturo">Naturowatch</option> <option value="ncahf">NCAHF</option> <option value="nccam">NCCAM Watch</option> <option value="nutrition">Nutriwatch</option> <option value="pharmacy">Pharmwatch</option> </select> </div> <!-- // --> </div> </div> <div class="col-12 col-lg-4 d-none d-lg-flex"> <!--Search & Select for Desktop--> <div id="header-extras"> <a href="https://quackwatch.org/support-cfi/" style="text-decoration: none;"><button class="white-btn-on-red">Donate</button></a> <form class="form-inline my-2" method="get" action="https://quackwatch.org/"> <input class="form-control mr-sm-2" type="search" name="s" value="" placeholder="Search" aria-label="Search"> <button class="btn btn-dark my-2 my-sm-0" type="submit">Search</button> </form> <!--<a href="https://quackwatch.org/?s&#038;_sf_s=" style="text-decoration: none;"><button class="btn btn-dark my-2 my-sm-0">Search</button>--> <select> <option value="#">Visit Our Affiliated Sites</option> <option value="quackwatch">Quackwatch</option> <option value="acupuncture">Acupuncture Watch</option> <option value="allergy">Allergy Watch</option> <option value="autism">Autism Watch</option> <option value="cancer">Cancer Treatment Watch</option> <option value="cases">Casewatch</option> <option value="chelation">Chelation Watch</option> <option value="chiro">Chirobase</option> <option value="credential">Credential Watch</option> <option value="dental">Dental Watch</option> <option value="device">Device Watch</option> <option value="diet">Diet Scam Watch</option> <option value="fibro">Fibromyalgia Watch</option> <option value="homeo">Homeowatch</option> <option value="info">Infomercial Watch</option> <option value="ihealth">Internet Health Pilot</option> <option value="mental">Mental Health Watch</option> <option value="mlm">MLM Watch</option> <option value="naturo">Naturowatch</option> <option value="ncahf">NCAHF</option> <option value="nccam">NCCAM Watch</option> <option value="nutrition">Nutriwatch</option> <option value="pharmacy">Pharmwatch</option> </select> </div> <!-- // --> </div> </nav> </div><!--.main-navigation--> </header><!--.page-header--> </div> <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script> <script src="https://unpkg.com/tippy.js@5"></script> <noscript> <div class="alert alert-danger center" role="alert"> <strong>Alert:</strong> This site works better with javascript. Enable javascript for your browser:<br /><a href="http://aboutjavascript.com/en/how-to-enable-javascript-in-chrome.html" class="alert-link" target='_blank'>Chrome Instructions</a>, <a href="http://aboutjavascript.com/en/how-to-enable-javascript-in-firefox.html" class="alert-link" target='_blank'>Firefox Instructions</a>, <a href="https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/how-to-enable-javascript-in-microsoft-edge/ba12aa2e-6f2f-4d87-a990-5c1d2fd7036c" class="alert-link" target='_blank'>Edge Instructions</a>, <a href="http://aboutjavascript.com/en/how-to-enable-javascript-in-internet-explorer.html" class="alert-link" target='_blank'>Internet Explorer Instructions</a>, <a href="https://aboutjavascript.com/en/how-to-enable-javascript-in-safari.html" class="alert-link" target='_blank'>Safari Instructions</a>. </div> </noscript> <div class="container-fluid page-container white"> </div> <div id="content" class="site-content row"> <button id="sidebar-button" class="">+</button> <div id="content-wrapper" class=""> <main id="main" class="site-main dft-padding readability" role="main"> <article id="post-13280" class="post-13280 page type-page status-publish hentry category-uncategorized authors-stephen-barrett-md"> <header class="entry-header"> <h1 class="entry-title">Bee Pollen, Royal Jelly, and Propolis</h1><hr /> <div class="clearfix"></div> <a href="https://quackwatch.org/authors/stephen-barrett-md">Stephen Barrett, M.D.</a><br /> September 17, 1999 </header><!-- .entry-header --> <div class="entry-content"> <p>&#8220;Bee pollen&#8221; is actually pollen from flowers that is collected from bees as they enter the hive or is harvested by other means. Pollen granules stick to the bees&#8217; legs and other body parts as they help themselves to nectar (the precursor of honey) inside the flowers. Pollen products are marketed through health-food stores, multilevel distributors, drugstores, mail-order advertising, and the Internet [<a href="http://www.infohwy.com/~newhrz/beepoll.htm">A</a>,<a href="http://webnz.com/alaron/ebeepol.html">B</a>,<a href="http://aim4health.com/beepoll.htm">C, </a><a href="http://www.ccpollen.com/">D</a>].</p> <h5>Misleading Claims</h5> <p>Promoters call bee pollen &#8220;the perfect food&#8221; and stress that it contains all of the essential amino acids and many vitamins and minerals [1]. However, none of these nutrients offers any magic, and all are obtained easily and less expensively from conventional foods. The <a href="http://www.ccpollen.com/">CC Pollen Company</a> of Phoenix, Arizona, has also claimed:</p> <blockquote> <p>It has been estimated that honeybee pollen contains over 5,000 enzymes and coenzymes, many times more than any other food. . . . Enzymes in the body are not only necessary for perpetual healing and digestion but for life itself. Without enzymes, life is impossible. Also, enzymes protect against premature aging. It has been reliably stated that only honeybee pollen contains all known enzymes in perfect proportion and perfect balance. [1]</p> </blockquote> <p>The above statement is erroneous. Pollen does not contain all known enzymes, and even if it did, that would not contribute to human health. The enzymes in plants and other species of animals help regulate the metabolic functions of their respective species. When ingested, they do not act as enzymes within the human body, because they are digested rather than absorbed intact into the body.</p> <p>Bee pollen has also been claimed to improve athletic and sexual performance; slow the aging process; promote both weight loss and weight gain; prevent infection, allergy, and cancer; and alleviate more than 60 other health problems.</p> <p>No scientific study supports any claim that bee pollen is effective against any human disease. The few studies that have been done to test its effect on athletic performance have shown no benefit [2-4]. In the mid-1970s, for example, tests conducted on swimmers and cross-country runners found no difference in performance between those who took bee pollen and those who took a placebo [3]. A six-week study of 20 swimmers published in 1982 found no performance difference [4].</p> <p>Royal jelly, which is secreted from the salivary glands of worker bees, serves as food for all young larvae and as the only food for larvae that will develop into queen bees. Like bee pollen, it has been falsely claimed to be especially nutritious, to provide buoyant energy, and to have therapeutic properties.</p> <p>Bee pollen and royal jelly should be regarded as potentially dangerous because they cause allergic reactions. People allergic to specific pollens have developed asthma, hives, and anaphylactic shock after ingesting pollen or royal jelly [5-12]. Neurologic and gastrointestinal reactions have also been reported [13,14]. Some cases of asthma and anaphylaxis have been fatal. The potential for serious reactions is widespread because at least 5% of Americans are allergic to ragweed pollen, and bee pollen contains pollen from ragweed or plants that cross-react with ragweed, such as dandelions, sunflowers, or chrysanthemums [15,16]. It has been speculated the presence of these allergens might enable regular users to become desensitized (as would happen with allergy shots). However, the odds of this happening are extremely small. Shots deliver the pollen in significant and controllable amounts, whereas bee pollen taken by mouth delivers unpredictable amounts that get digested [17].</p> <p>Bees are exposed to various bacterial and chemical contaminants that might be incorporated in products for human consumption [18]. Although both bee pollen and royal jelly contain substances with antibiotic properties, both can sustain the growth of disease-causing organisms and neither has practical use as an antibiotic [19]. Contaminants can also be introduced during processing [18]. In 1995, Montana Naturals International, in Arlee, Montana, had to recall several thousand bottles of a bee pollen/royal jelly/propolis mix because of contamination with lead.</p> <p>Propolis, also called &#8220;bee glue,&#8221; is a resinous substance bees use to construct and maintain their hives. In laboratory tests, propolis has exhibited a variety of interesting antimicrobial and antitumor properties [20]. However, it has little practical use and can cause contact dermatitis and other allergic reactions [21].</p> <h5>Federal Enforcement Actions</h5> <ul> <li>In 1990, the Federal Trade Commission (FTC) obtained a consent agreement barring <a href="https://www.ftc.gov/opa/predawn/F93/aln.htm">American Life Nutrition</a> and American LifeFarFun, Inc., from making various unsubstantiated claims for its bee pollen and four other products. </li> <li>In 1992, a federal court ordered destruction of quantities of <i>Bee Alive, </i>a royal jelly and herb combination in honey seized from <a href="http://www.beealive.com/">Bee-Alive Inc</a>., of Valley Cottage, N.Y. In 1989, the FDA had warned the company that promotional material distributed with a similar product had made illegal statements that the product was useful in treating or preventing chronic Epstein-Barr virus syndrome, gastrointestinal ulcers, colitis, low blood pressure, arteriosclerosis, nervous breakdowns, infertility, impotence, depression, rheumatoid arthritis, Alzheimer&#8217;s disease, anemia, asthma, hemorrhoids, migraine headaches, and other problems. Despite a promise to stop distributing literature making these claims, the company continued to advertise that Regina Royal Jelly could help children resist childhood ailments, &#8220;offers daytime vitality and nighttime tranquility,&#8221; increases mental and physical stamina, and &#8220;seems to improve the immune system.&#8221; Company president Madeline Balletta still promotes <i>Bee-Alive</i> as a &#8220;super-food&#8221; whose users (including herself) have been relieved from severe fatigue [22,23]. </li> <li>In 1994, the FTC obtained a consent agreement barring <a href="https://www.ftc.gov/opa/predawn/F95/beesweetinc.htm">Bee-Sweet, Inc</a>., a North Carolina-based firm, from claiming that its products could treat various physical ailments. Its ads had claimed that, &#8220;Studies performed by doctors around the world have shown bee pollen to be effective in treating illnesses from allergies to arthritis, anorexia to overweight, fatigue to arteriosclerosis.&#8221; </li> <li>In 1992, the <a href="https://www.ftc.gov/opa/predawn/F93/ccpollen.6.htm">CC Pollen Company</a> and its owners (Bruce R. Brown, Carol M. Brown, and Royden Brown) agreed to pay $200,000 to settle charges that they falsely represented that bee-pollen products could produce weight loss, permanently alleviate allergies, reverse the aging process, and cure, prevent, or alleviate impotence or sexual dysfunction. The company and its owners were also charged with falsely stating that bee-pollen products are an effective antibiotic for human use and cannot result in an allergic reaction. Under the agreement, the company and its owners were prohibited from making all of these claims and are required to have scientific evidence to support any other health-related claims about any other product for human consumption. Some of the false claims were made in &#8220;infomercials&#8221; that were misrepresented as news or documentary programs, even though they were paid ads. During one infomercial, entitled &#8220;TV Insiders,&#8221; host Vince Inneo falsely implied that the program was part of a series of independent investigations. The products offered during the infomercial were <i>Bee-Young</i>, <i>Pollenergy</i> (to &#8220;restore missing energy&#8217;), <i>Royal Jelly</i> (&#8220;to keep sexually active at any age&#8221;), <i>President&#8217;s Lunch</i>, and <i>First Lady&#8217;s Lunch Bar</i>. The infomercial producer <a href="https://www.ftc.gov/opa/predawn/F93/tvinc.txt">TV, Inc</a>., signed a separate consent agreement. </li> </ul> <p>Although violation of an FTC consent agreement can trigger large penalties, Royden Brown continued to promote bee pollen illegally. In May 1994, S&amp;S Public Relations Inc., of Chicago, issued a letter stating: &#8220;It&#8217;s allergy season, but many sufferers aren&#8217;t suffering anymore. They&#8217;re using Aller-Bee-Gone, bee pollen tablets that are credited with relieving the symptoms of allergies, asthma, and other respiratory ailments.&#8221; The accompanying news release added that Brown&#8217;s lifetime goal was &#8220;to eliminate degenerative disease worldwide through the use of bee pollen. However, a few weeks later, bee pollen&#8217;s most colorful promoter died following injuries sustained in a fall.</p> <h5>For Additional Information</h5> <ul> <li><a href="http://edis.ifas.ufl.edu/scripts/htmlgen.exe?DOCUMENT_AA158">Producing pollen (fact sheet from the University of Florida)</a> </li> </ul> <h5>References</h5> <ol> <li>Is honeybee pollen the world&#8217;s only perfect food? (Booklet) Phoenix, AZ: CC Pollen Company, 1984. </li> <li>Steben RE, Boudroux P. The effects of pollen and pollen extracts on selected blood factors and performance of athletes. Journal of Sports Medicine and Physical Fitness 18:271-278, 1978. </li> <li>Larkin T. Bee pollen as a health food. FDA Consumer 18(3):21 22, 1984. </li> <li>Maughan RJ, Evans SP. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=7139223&amp;dopt=Abstract">Effects of pollen extract upon adolescent swimmers. British Journal of Sports Medicine </a>16:142-145, 1982. </li> <li>Thien FC and others. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=8835130&amp;dopt=Abstract">Asthma and anaphylaxis induced by royal jelly</a>. Clinical and Experimental Allergy 26:216-222, 1996. </li> <li>Shaw D and others. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=9391777&amp;dopt=Abstract">Traditional remedies and food supplements. A 5-year toxicological study (1991-1995)</a>. Drug Safety 17:342-356, 1997. </li> <li>Prichard M, Turner KJ. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=3864427&amp;dopt=Abstract">Acute hypersensitivity to ingested processed pollen</a>. Australian and New Zealand Journal of Medicine 15:346-347, 1985. </li> <li>Yonei Y and others. Case report: <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=9257239&amp;dopt=Abstract">Haemorrhagic colitis associated with royal jelly intake</a>. Journal of Gastroenterology and Hepatology 12:495-499, 1997. </li> <li>Geyman JP. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=8059632&amp;dopt=Abstract">Anaphylactic reaction after ingestion of bee pollen</a>. Journal of the American Board of Family Practice 7:250-252, 1994. </li> <li>Mansfield LE, Goldstein GB. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=7270986&amp;dopt=Abstract">Anaphylactic reaction after ingestion of local bee pollen</a>. Annals of Allergy 47:154-156, 1981. </li> <li>Lombardi C and others. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=9934408&amp;dopt=Abstract">Allergic reactions to honey and royal jelly and their relationship with sensitization to compositae</a>. Allergologia et Immunopathologia 26:288-290, 1998. </li> <li>Leung R and others. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=9088660&amp;dopt=Abstract">Royal jelly consumption and hypersensitivity in the community</a>. Clinical and Experimental Allergy 27:333-336, 1997. </li> <li>Lin FL and others. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=2708739&amp;dopt=Abstract">Hypereosinophilia, neurologic, and gastrointestinal symptoms after bee pollen ingestion</a>. Journal of Allergy and Clinical Immunology 83:793-796, 1989. </li> <li>Puente S and others. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=9324586&amp;dopt=Abstract">Eosinophilic gastroenteritis caused by bee pollen sensitization.</a> Medicina Clinica 108:698-700, 1997. </li> <li>Mirkin G. Can bee pollen benefit health? JAMA 262:1854, 1989. </li> <li>Helbling A and others. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=1590566&amp;dopt=Abstract">Allergy to honey: Relation to pollen and honey bee allergy</a>. Allergy 47:41-49, 1992. </li> <li>Wandycz K. Allergies: Runny nose? Itchy throat? Bee pollen helps some allergy victims, but for most people it&#8217;s a waste of money. Forbes, April 25, 1995, p 414. </li> <li>Fleche C and others. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=9501376&amp;dopt=Abstract">Contamination of bee products and risk for human health: Situation in France</a>. Revue Scientifique et Technique 16:609-19, 1997. </li> <li>Sanford MT. <a href="http://edis.ifas.ufl.edu/scripts/htmlgen.exe?DOCUMENT_AA158">Pollen marketing.</a> Fact Sheet ENY-118. Institute of Food and Agricultural Sciences, University of Florida. Feb 1995. </li> <li>Burdock GA. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=9651052&amp;dopt=Abstract">Review of the biological properties and toxicity of bee propolis</a>. Food and Chemical Toxicology 36:347-363, 1998. </li> <li>Hausen BM and others. <a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=PubMed&amp;list_uids=3315436&amp;dopt=Abstract">Propolis allergy (I): Origin, properties, usage and literature review</a>. Contact Dermatitis 17:163-170, 1987. </li> <li>Ben Kinchlow and Madeline Balletta have a secret they want to share with you. They both have major responsibilities and hectic schedules. They both travel extensively. They have a secret . . . a God-given food that has already helped hundreds of thousands of Christians. Advertisement in Human Events, Aug 20, 1999, p 15. </li> <li><a href="http://www.beealive.com/royalj_say.html">Bee-Alive Web site</a>, Accessed Aug 22, 1999. </li> </ol> <p> <a href="../../../index.html">Quackwatch Home Page</a></p> </p> <p> <font size="-1">This article was revised on September 17, 1999.</font></p> <div class="clearfix"></div> </div><!-- .entry-content --> <footer class="entry-meta"> </footer> </article><!-- #post-## --> </main> </div> <div id="sidebar-wrapper" class=""> <div id="sidebar-right"> <!--<aside id="social-share" class="widget"> <h1 class="widget-title">Share this page:</h1> social_warfare removed </aside>--> <!--<aside id="email-subscribe" class="widget email-widget"> <h4>RECEIVE EMAILS FROM US</h4> </aside>--> <li id="media_image-2" class="widget widget_media_image"><a href="https://www.amazon.com/Consumer-Health-Guide-Intelligent-Decisions-ebook/dp/B07P7D6SQ5"><img width="234" height="300" src="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2020/01/22174957/41a9x1s3uoL._SX388_BO1204203200_-234x300.jpg" class="image wp-image-16122 attachment-medium size-medium" alt="" style="max-width: 100%; height: auto;" decoding="async" loading="lazy" srcset="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2020/01/22174957/41a9x1s3uoL._SX388_BO1204203200_-234x300.jpg 234w, https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2020/01/22174957/41a9x1s3uoL._SX388_BO1204203200_.jpg 390w" sizes="(max-width: 234px) 100vw, 234px" /></a></li><li id="text-7" class="widget widget_text"><h2 class="widgettitle">Consumer Health: A Guide to Intelligent Decisions</h2> <div class="textwidget"><p>This new edition of the most comprehensive text available in the field continues to provide a vast amount of information to enable consumers to make wise choices regarding health products and services. It offers a panoramic view of the health marketplace, while explaining the scientific methods that are essential for validating claims about how products and services affect health.</p> <p><a href="https://www.amazon.com/Consumer-Health-Guide-Intelligent-Decisions-ebook/dp/B07P7D6SQ5">Order on Amazon</a></p> </div> </li> <li id="text-3" class="widget widget_text"><h2 class="widgettitle">Hot Topics</h2> <div class="textwidget"><p><a href="https://quackwatch.org/consumer-protection/covid-19-consumer-protection/">COVID-19 Schemes, Scams, and Misinformation</a></p> <p><a href="https://quackwatch.org/ncahf/consumer-health-digest-index-of-covid-19-news-briefs/">COVID-19 News Briefs</a></p> <p><a href="https://quackwatch.org/01QuackeryRelatedTopics/altwary/">Be Wary of &#8220;Alternative&#8221; &#8220;Complementary,&#8221; and &#8220;Integrative&#8221; Health Methods</a></p> <p><a href="https://quackwatch.org/01QuackeryRelatedTopics/Tests/urine_toxic/">How &#8220;Provoked&#8221; Urine Metal Tests Are Used to Mislead Patients</a></p> <p><a href="https://quackwatch.org/11Ind/mercola/">FDA orders Dr. Joseph Mercola to stop making illegal claims</a></p> <p><a href="https://quackwatch.org/03HealthPromotion/immu/too_many/">Do Children Get Too Many Immunizations? The Answer Is No</a>.</p> <p><a href="https://quackwatch.org/04ConsumerEducation/null/">A Critical Look at Gary Null&#8217;s Activities and Credentials</a></p> <p><a href="https://quackwatch.org/11Ind/bolen/">The Libel Campaign against Quackwatch and Dr. Barrett</a></p> <p><a href="https://quackwatch.org/01QuackeryRelatedTopics/Cancer/day/">Stay Away from Lorraine Day</a></p> </div> </li><li id="text-2" class="widget widget_text"><h2 class="widgettitle">Links to Recommended Vendors</h2> <div class="textwidget"><p><a href="http://www.consumerlab.com/index.asp?claffid=101024">ConsumerLab.com</a>: Evaluates the quality of dietary supplement and herbal products.</p> <p><a href="https://www.pharmacychecker.com/?PCAffId=C52C071E-1222-424D-8D04-8D51BCD6EE13">PharmacyChecker.com</a>: Compare drug prices and save money at verified online pharmacies.</p> <p><a href="https://www.amazon.com/?_encoding=UTF8&amp;tag=quackwatch00-20" target="_blank" rel="noopener" data-saferedirecturl="https://www.google.com/url?q=http://www.amazon.com/?_encoding%3DUTF8%26tag%3Dquackwatch00-20&amp;source=gmail&amp;ust=1576797583875000&amp;usg=AFQjCNHIvs34vLLwKZ_RohX6Nz7g3JR2pQ">Amazon.com</a>: Discount prices, huge inventory, and superb customer service.</p> </div> </li> <aside id="support" class="widget"> <img class="programs" src="https://centerforinquiry.org/wp-content/uploads/sites/33/2019/12/quackwatch-duck-full.png" /> <p style="text-align:center;">Quackwatch is a program of the Center for Inquiry.</p> <a href="https://centerforinquiry.org/"><img class="programs" src="https://centerforinquiry.org/wp-content/uploads/2020/01/CFI2017.png" /></a> <a href="https://centerforinquiry.org/membership" style="text-decoration: none;"><h4 class="grey-button"><img src="https://cdn.centerforinquiry.org/img/wordpress/cfi-web-icons-member.png" />JOIN CFI</h4></a> <a href="https://centerforinquiry.org/donate/quackwatch/" style="text-decoration: none;"><h4 class="grey-button"><img src="https://cdn.centerforinquiry.org/img/wordpress/cfi-web-icons-donate.png" />DONATE</h4></a> </aside> </div> </div><!-- sidebar-wrapper --> </div><!--Site Content--> </div><!--.site-content--> </div><!--.page-container--> <div id="extras" class="container-fluid d-block d-print-none"> <div class="row"> <div id="hon-code" class="col-md-6"> <img src="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/hon.gif" /> <p>Quackwatch abides by the <a href="/about/honcode">HONcode principles</a> of the Health On the Net Foundation</p> </div> <div id="error-form" class="col-md-6"> <h5>Notice an error on this page?</h5> <p>We've recently redesigned this website, let us know if anything got lost or broken during the move.</p> <a href="#" data-toggle="modal" data-target="#feedbackModal"><button class="btn white-button-on-blue">Report an Issue</button></a> </div> </div> <div class="row"> <div id="disclaimer" class="col-md-12"> <p class="small">All articles on this Web site except government reports are copyrighted. Single copies can be downloaded for personal education; other uses without authorization are illegal.<br />"Quackwatch" and the duck picture are service-marked; their unauthorized use is illegal.</p> </div> </div> </div> <div class="modal fade" id="feedbackModal" tabindex="-1" role="dialog" aria-labelledby="feedbackModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="feedbackModalLabel">Quackwatch Feedback</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> </div> <div class="modal-body"> <noscript class="ninja-forms-noscript-message"> Notice: JavaScript is required for this content.</noscript> <div id="nf-form-2-cont" class="nf-form-cont" aria-live="polite" aria-labelledby="nf-form-title-2" aria-describedby="nf-form-errors-2" role="form"> <div class="nf-loading-spinner"></div> </div> <!-- That data is being printed as a workaround to page builders reordering the order of the scripts loaded--> <script>var formDisplay=1;var nfForms=nfForms||[];var form=[];form.id='2';form.settings={"objectType":"Form Setting","editActive":true,"title":"Quackwatch Feedback","created_at":"2019-11-11 10:41:52","form_title":"Feedback","default_label_pos":"above","show_title":0,"clear_complete":"1","hide_complete":"1","logged_in":"0","wrapper_class":"","element_class":"","key":"","add_submit":"1","currency":"","unique_field_error":"A form with this value has already been submitted.","not_logged_in_msg":"","sub_limit_msg":"The form has reached its submission limit.","calculations":[],"formContentData":["post_title_1573487572912","post_url_1573487578465","what_best_describes_the_error_on_this_page_1573487059894","please_be_specific_if_there_is_a_broken_link_please_supply_the_link_1692724793760","submit_1523909373360"],"drawerDisabled":false,"allow_public_link":0,"embed_form":"","changeEmailErrorMsg":"Please enter a valid email address!","changeDateErrorMsg":"Please enter a valid date!","confirmFieldErrorMsg":"These fields must match!","fieldNumberNumMinError":"Number Min Error","fieldNumberNumMaxError":"Number Max Error","fieldNumberIncrementBy":"Please increment by ","formErrorsCorrectErrors":"Please correct errors before submitting this form.","validateRequiredField":"This is a required field.","honeypotHoneypotError":"Honeypot Error","fieldsMarkedRequired":"Fields marked with an <span class=\"ninja-forms-req-symbol\">*<\/span> are required","repeatable_fieldsets":"","conditions":[{"collapsed":false,"process":1,"connector":"all","when":[{"connector":"AND","key":"what_best_describes_the_error_on_this_page_1573487059894","comparator":"contains","value":"broken-link-s","type":"field","modelType":"when"},{"connector":"OR","key":"what_best_describes_the_error_on_this_page_1573487059894","comparator":"contains","value":"spelling-mistake-s","type":"field","modelType":"when"}],"then":[{"key":"please_be_specific_if_there_is_a_broken_link_please_supply_the_link_1692724793760","trigger":"show_field","value":"","type":"field","modelType":"then"}],"else":[{"key":"please_be_specific_if_there_is_a_broken_link_please_supply_the_link_1692724793760","trigger":"hide_field","value":"","type":"field","modelType":"else"}]}],"form_title_heading_level":"3","ninjaForms":"Ninja Forms","fieldTextareaRTEInsertLink":"Insert Link","fieldTextareaRTEInsertMedia":"Insert Media","fieldTextareaRTESelectAFile":"Select a file","formHoneypot":"If you are a human seeing this field, please leave it empty.","fileUploadOldCodeFileUploadInProgress":"File Upload in Progress.","fileUploadOldCodeFileUpload":"FILE UPLOAD","currencySymbol":false,"thousands_sep":",","decimal_point":".","siteLocale":"en_US","dateFormat":"m\/d\/Y","startOfWeek":"0","of":"of","previousMonth":"Previous Month","nextMonth":"Next Month","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"weekdaysMin":["Su","Mo","Tu","We","Th","Fr","Sa"],"recaptchaConsentMissing":"reCaptcha validation couldn&#039;t load.","recaptchaMissingCookie":"reCaptcha v3 validation couldn&#039;t load the cookie needed to submit the form.","recaptchaConsentEvent":"Accept reCaptcha cookies before sending the form.","currency_symbol":"","beforeForm":"","beforeFields":"","afterFields":"","afterForm":""};form.fields=[{"objectType":"Field","objectDomain":"fields","editActive":false,"order":1,"idAttribute":"id","type":"hidden","label":"Post Title","key":"post_title_1573487572912","default":"{wp:post_title}","admin_label":"","drawerDisabled":false,"id":14,"beforeField":"","afterField":"","value":"Bee Pollen, Royal Jelly, and Propolis","label_pos":"above","parentType":"hidden","element_templates":["hidden","input"],"old_classname":"","wrap_template":"wrap-no-label"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":2,"idAttribute":"id","type":"hidden","label":"Post URL","key":"post_url_1573487578465","default":"{wp:post_url}","admin_label":"","drawerDisabled":false,"id":12,"beforeField":"","afterField":"","value":"https:\/\/quackwatch.org\/related\/dsh\/bee\/","label_pos":"above","parentType":"hidden","element_templates":["hidden","input"],"old_classname":"","wrap_template":"wrap-no-label"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":3,"idAttribute":"id","type":"listcheckbox","label":"What best describes the error on this page?","key":"what_best_describes_the_error_on_this_page_1573487059894","label_pos":"above","required":1,"options":[{"errors":[],"max_options":0,"label":"Spelling Mistake(s)","value":"spelling-mistake-s","calc":"","selected":0,"order":0,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options <a href=\"#\" class=\"nf-add-new\">Add New<\/a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"><\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<span class=\"dashicons dashicons-yes\"><\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Broken Link(s)","value":"broken-link-s","calc":"","selected":0,"order":1,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options <a href=\"#\" class=\"nf-add-new\">Add New<\/a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"><\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<span class=\"dashicons dashicons-yes\"><\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Missing Image(s)","value":"missing-image-s","calc":"","selected":0,"order":2,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options <a href=\"#\" class=\"nf-add-new\">Add New<\/a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"><\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<span class=\"dashicons dashicons-yes\"><\/span>","default":0}}}}],"container_class":"","element_class":"","admin_label":"","help_text":"","desc_text":"<p>Check all that apply.<\/p>","drawerDisabled":false,"id":13,"beforeField":"","afterField":"","value":"","parentType":"list","element_templates":["listcheckbox","input"],"old_classname":"list-checkbox","wrap_template":"wrap"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":4,"idAttribute":"id","label":"Please be specific. If there is a broken link please supply the link.","type":"textarea","key":"please_be_specific_if_there_is_a_broken_link_please_supply_the_link_1692724793760","label_pos":"above","required":1,"default":"","placeholder":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","textarea_rte":"","disable_rte_mobile":"","textarea_media":"","value":"","drawerDisabled":false,"id":15,"beforeField":"","afterField":"","parentType":"textarea","element_templates":["textarea","input"],"old_classname":"","wrap_template":"wrap"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":5,"idAttribute":"id","type":"submit","label":"Submit","processing_label":"Processing","container_class":"","element_class":"","key":"submit_1523909373360","field_label":"Submit","field_key":"submit_1523909373360","id":11,"beforeField":"","afterField":"","value":"","label_pos":"above","parentType":"textbox","element_templates":["submit","button","input"],"old_classname":"","wrap_template":"wrap-no-label"}];nfForms.push(form);</script> </div> </div> </div> </div> <div class="container-fluid blue d-block d-print-none"> <footer id="site-footer" class="site-footer page-footer" role="contentinfo"> <div id="footer-row" class="row contain-text m-5 mx-auto justify-content-center"> <div class="col-md-4 col-12 footer-left mr-4"> <a href="https://quackwatch.org"><img src="https://cdn.centerforinquiry.org/img/CFImark2017-on-blue.png" class="d-md-none footer-logo mb-3" /></a> <h3>Quick Links</h3> <hr class="mb-4" /> <div class="clearfix"></div> <ul class="navbar-nav"> <div class="footer-menu"><ul id="menu-footer" class="menu"><li id="menu-item-16039" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-16039"><a href="https://quackwatch.org/">Quackwatch Home</a></li> <li id="menu-item-16034" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16034"><a href="https://quackwatch.org/about/navigate/">Navigation Guide</a></li> <li id="menu-item-16035" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16035"><a href="https://quackwatch.org/about/chd/">Newsletter</a></li> <li id="menu-item-16036" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16036"><a href="http://lists.quackwatch.org/mailman/listinfo/healthfraud_lists.quackwatch.org">Discussion List</a></li> </ul></div> </ul> </div> <div style="border-left: 3px solid #FFF; height:400px;" class="d-none d-md-block mr-4"> </div> <div class="col-md-4 col-12 footer-right"> <a href="https://quackwatch.org"><img src="https://cdn.centerforinquiry.org/img/wordpress/CFI2017-on-blue.png" class="d-none d-md-block footer-logo mb-4" /></a> <span class="d-md-none"><hr /></span> <h6><strong>Center for Inquiry – Headquarters</strong></h6> <p>PO Box 741<br /> Amherst, NY 14226<br /> <a href="tel:7166364869">(716) 636-4869</p></a> <br /> <h6><strong>Center for Inquiry – Executive Office</strong></h6> <p>1012 14th Street, NW, Suite 205<br /> Washington, DC 20005</p> <p><a href="https://quackwatch.org/terms-of-service/">Terms</a> &middot; <a href="https://quackwatch.org/privacy/">Privacy&nbsp;Statement</a><br /> <a href="https://quackwatch.org">Center&nbsp;for&nbsp;Inquiry,&nbsp;Inc</a>&nbsp;©&nbsp;2024 &middot; All&nbsp;Rights&nbsp;Reserved.<br /> Registered 501(c)(3). EIN: 22-2306795</p> </div> </div> </footer><!--.page-footer--> </div> <!--wordpress footer--> <script type="text/javascript">function showhide_toggle(e,t,r,g){var a=jQuery("#"+e+"-link-"+t),s=jQuery("a",a),i=jQuery("#"+e+"-content-"+t),l=jQuery("#"+e+"-toggle-"+t);a.toggleClass("sh-show sh-hide"),i.toggleClass("sh-show sh-hide").toggle(),"true"===s.attr("aria-expanded")?s.attr("aria-expanded","false"):s.attr("aria-expanded","true"),l.text()===r?(l.text(g),a.trigger("sh-link:more")):(l.text(r),a.trigger("sh-link:less")),a.trigger("sh-link:toggle")}</script> <script type="text/javascript">!function(t,e){"use strict";function n(){if(!a){a=!0;for(var t=0;t<d.length;t++)d[t].fn.call(window,d[t].ctx);d=[]}}function o(){"complete"===document.readyState&&n()}t=t||"docReady",e=e||window;var d=[],a=!1,c=!1;e[t]=function(t,e){return a?void setTimeout(function(){t(e)},1):(d.push({fn:t,ctx:e}),void("complete"===document.readyState||!document.attachEvent&&"interactive"===document.readyState?setTimeout(n,1):c||(document.addEventListener?(document.addEventListener("DOMContentLoaded",n,!1),window.addEventListener("load",n,!1)):(document.attachEvent("onreadystatechange",o),window.attachEvent("onload",n)),c=!0)))}}("wpBruiserDocReady",window); (function(){var wpbrLoader = (function(){var g=document,b=g.createElement('script'),c=g.scripts[0];b.async=1;b.src='https://quackwatch.org/?gdbc-client=3.1.43-'+(new Date()).getTime();c.parentNode.insertBefore(b,c);});wpBruiserDocReady(wpbrLoader);window.onunload=function(){};window.addEventListener('pageshow',function(event){if(event.persisted){(typeof window.WPBruiserClient==='undefined')?wpbrLoader():window.WPBruiserClient.requestTokens();}},false);})(); </script><link rel='stylesheet' id='dashicons-css' href='https://quackwatch.org/wp-includes/css/dashicons.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='nf-display-css' href='https://quackwatch.org/wp-content/plugins/ninja-forms/assets/css/display-opinions-light.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='nf-font-awesome-css' href='https://quackwatch.org/wp-content/plugins/ninja-forms/assets/css/font-awesome.min.css?ver=6.6.2' type='text/css' media='all' /> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/embed-any-document/js/pdfobject.min.js?ver=2.7.4" id="awsm-ead-pdf-object-js"></script> <script type="text/javascript" id="awsm-ead-public-js-extra"> /* <![CDATA[ */ var eadPublic = []; /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/embed-any-document/js/embed-public.min.js?ver=2.7.4" id="awsm-ead-public-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/jquery/ui/core.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/jquery/ui/datepicker.js?ver=1.13.3" id="jquery-ui-datepicker-js"></script> <script type="text/javascript" id="jquery-ui-datepicker-js-after"> /* <![CDATA[ */ jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":0,"isRTL":false});}); /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/clipboard.js?ver=2.0.11" id="clipboard-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/comment-reply.js?ver=6.6.2" id="comment-reply-js" async="async" data-wp-strategy="async"></script> <script type="text/javascript" src="https://quackwatch.org/wp-content/themes/bootstrap-basic4/assets/js/bootstrap.bundle.min.js?ver=4.6.2" id="bootstrap4-bundle-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-content/themes/bootstrap-basic4/assets/js/main.js?ver=6.6.2" id="bootstrap-basic4-main-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/underscore.min.js?ver=1.13.4" id="underscore-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/backbone.min.js?ver=1.5.0" id="backbone-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/ninja-forms/assets/js/min/front-end-deps.js?ver=3.8.17" id="nf-front-end-deps-js"></script> <script type="text/javascript" id="nf-front-end-js-extra"> /* <![CDATA[ */ var nfi18n = {"ninjaForms":"Ninja Forms","changeEmailErrorMsg":"Please enter a valid email address!","changeDateErrorMsg":"Please enter a valid date!","confirmFieldErrorMsg":"These fields must match!","fieldNumberNumMinError":"Number Min Error","fieldNumberNumMaxError":"Number Max Error","fieldNumberIncrementBy":"Please increment by ","fieldTextareaRTEInsertLink":"Insert Link","fieldTextareaRTEInsertMedia":"Insert Media","fieldTextareaRTESelectAFile":"Select a file","formErrorsCorrectErrors":"Please correct errors before submitting this form.","formHoneypot":"If you are a human seeing this field, please leave it empty.","validateRequiredField":"This is a required field.","honeypotHoneypotError":"Honeypot Error","fileUploadOldCodeFileUploadInProgress":"File Upload in Progress.","fileUploadOldCodeFileUpload":"FILE UPLOAD","currencySymbol":"","fieldsMarkedRequired":"Fields marked with an <span class=\"ninja-forms-req-symbol\">*<\/span> are required","thousands_sep":",","decimal_point":".","siteLocale":"en_US","dateFormat":"m\/d\/Y","startOfWeek":"0","of":"of","previousMonth":"Previous Month","nextMonth":"Next Month","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"weekdaysMin":["Su","Mo","Tu","We","Th","Fr","Sa"],"recaptchaConsentMissing":"reCaptcha validation couldn't load.","recaptchaMissingCookie":"reCaptcha v3 validation couldn't load the cookie needed to submit the form.","recaptchaConsentEvent":"Accept reCaptcha cookies before sending the form."}; var nfFrontEnd = {"adminAjax":"https:\/\/quackwatch.org\/wp-admin\/admin-ajax.php","ajaxNonce":"6b83d5b2e7","requireBaseUrl":"https:\/\/quackwatch.org\/wp-content\/plugins\/ninja-forms\/assets\/js\/","use_merge_tags":{"user":{"address":"address","textbox":"textbox","button":"button","checkbox":"checkbox","city":"city","confirm":"confirm","date":"date","email":"email","firstname":"firstname","html":"html","hidden":"hidden","lastname":"lastname","listcheckbox":"listcheckbox","listcountry":"listcountry","listimage":"listimage","listmultiselect":"listmultiselect","listradio":"listradio","listselect":"listselect","liststate":"liststate","note":"note","number":"number","password":"password","passwordconfirm":"passwordconfirm","product":"product","quantity":"quantity","recaptcha":"recaptcha","recaptcha_v3":"recaptcha_v3","repeater":"repeater","shipping":"shipping","spam":"spam","starrating":"starrating","submit":"submit","terms":"terms","textarea":"textarea","total":"total","unknown":"unknown","zip":"zip","hr":"hr"},"post":{"address":"address","textbox":"textbox","button":"button","checkbox":"checkbox","city":"city","confirm":"confirm","date":"date","email":"email","firstname":"firstname","html":"html","hidden":"hidden","lastname":"lastname","listcheckbox":"listcheckbox","listcountry":"listcountry","listimage":"listimage","listmultiselect":"listmultiselect","listradio":"listradio","listselect":"listselect","liststate":"liststate","note":"note","number":"number","password":"password","passwordconfirm":"passwordconfirm","product":"product","quantity":"quantity","recaptcha":"recaptcha","recaptcha_v3":"recaptcha_v3","repeater":"repeater","shipping":"shipping","spam":"spam","starrating":"starrating","submit":"submit","terms":"terms","textarea":"textarea","total":"total","unknown":"unknown","zip":"zip","hr":"hr"},"system":{"address":"address","textbox":"textbox","button":"button","checkbox":"checkbox","city":"city","confirm":"confirm","date":"date","email":"email","firstname":"firstname","html":"html","hidden":"hidden","lastname":"lastname","listcheckbox":"listcheckbox","listcountry":"listcountry","listimage":"listimage","listmultiselect":"listmultiselect","listradio":"listradio","listselect":"listselect","liststate":"liststate","note":"note","number":"number","password":"password","passwordconfirm":"passwordconfirm","product":"product","quantity":"quantity","recaptcha":"recaptcha","recaptcha_v3":"recaptcha_v3","repeater":"repeater","shipping":"shipping","spam":"spam","starrating":"starrating","submit":"submit","terms":"terms","textarea":"textarea","total":"total","unknown":"unknown","zip":"zip","hr":"hr"},"fields":{"address":"address","textbox":"textbox","button":"button","checkbox":"checkbox","city":"city","confirm":"confirm","date":"date","email":"email","firstname":"firstname","html":"html","hidden":"hidden","lastname":"lastname","listcheckbox":"listcheckbox","listcountry":"listcountry","listimage":"listimage","listmultiselect":"listmultiselect","listradio":"listradio","listselect":"listselect","liststate":"liststate","note":"note","number":"number","password":"password","passwordconfirm":"passwordconfirm","product":"product","quantity":"quantity","recaptcha":"recaptcha","recaptcha_v3":"recaptcha_v3","repeater":"repeater","shipping":"shipping","spam":"spam","starrating":"starrating","submit":"submit","terms":"terms","textarea":"textarea","total":"total","unknown":"unknown","zip":"zip","hr":"hr"},"calculations":{"html":"html","hidden":"hidden","note":"note","unknown":"unknown"}},"opinionated_styles":"light","filter_esc_status":"false","nf_consent_status_response":[]}; var nfInlineVars = []; /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/ninja-forms/assets/js/min/front-end.js?ver=3.8.17" id="nf-front-end-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/ninja-forms-conditionals/assets/js/min/front-end.js?ver=6.6.2" id="nf-cl-front-end-js"></script> <script id="tmpl-nf-layout" type="text/template"> <span id="nf-form-title-{{{ data.id }}}" class="nf-form-title"> {{{ ( 1 == data.settings.show_title ) ? '<h' + data.settings.form_title_heading_level + '>' + data.settings.title + '</h' + data.settings.form_title_heading_level + '>' : '' }}} </span> <div class="nf-form-wrap ninja-forms-form-wrap"> <div class="nf-response-msg"></div> <div class="nf-debug-msg"></div> <div class="nf-before-form"></div> <div class="nf-form-layout"></div> <div class="nf-after-form"></div> </div> </script> <script id="tmpl-nf-empty" type="text/template"> </script> <script id="tmpl-nf-before-form" type="text/template"> {{{ data.beforeForm }}} </script><script id="tmpl-nf-after-form" type="text/template"> {{{ data.afterForm }}} </script><script id="tmpl-nf-before-fields" type="text/template"> <div class="nf-form-fields-required">{{{ data.renderFieldsMarkedRequired() }}}</div> {{{ data.beforeFields }}} </script><script id="tmpl-nf-after-fields" type="text/template"> {{{ data.afterFields }}} <div id="nf-form-errors-{{{ data.id }}}" class="nf-form-errors" role="alert"></div> <div class="nf-form-hp"></div> </script> <script id="tmpl-nf-before-field" type="text/template"> {{{ data.beforeField }}} </script><script id="tmpl-nf-after-field" type="text/template"> {{{ data.afterField }}} </script><script id="tmpl-nf-form-layout" type="text/template"> <form> <div> <div class="nf-before-form-content"></div> <div class="nf-form-content {{{ data.element_class }}}"></div> <div class="nf-after-form-content"></div> </div> </form> </script><script id="tmpl-nf-form-hp" type="text/template"> <label id="nf-label-field-hp-{{{ data.id }}}" for="nf-field-hp-{{{ data.id }}}" aria-hidden="true"> {{{ nfi18n.formHoneypot }}} <input id="nf-field-hp-{{{ data.id }}}" name="nf-field-hp" class="nf-element nf-field-hp" type="text" value="" aria-labelledby="nf-label-field-hp-{{{ data.id }}}" /> </label> </script> <script id="tmpl-nf-field-layout" type="text/template"> <div id="nf-field-{{{ data.id }}}-container" class="nf-field-container {{{ data.type }}}-container {{{ data.renderContainerClass() }}}"> <div class="nf-before-field"></div> <div class="nf-field"></div> <div class="nf-after-field"></div> </div> </script> <script id="tmpl-nf-field-before" type="text/template"> {{{ data.beforeField }}} </script><script id="tmpl-nf-field-after" type="text/template"> <# /* * Render our input limit section if that setting exists. */ #> <div class="nf-input-limit"></div> <# /* * Render our error section if we have an error. */ #> <div id="nf-error-{{{ data.id }}}" class="nf-error-wrap nf-error" role="alert"></div> <# /* * Render any custom HTML after our field. */ #> {{{ data.afterField }}} </script> <script id="tmpl-nf-field-wrap" type="text/template"> <div id="nf-field-{{{ data.id }}}-wrap" class="{{{ data.renderWrapClass() }}}" data-field-id="{{{ data.id }}}"> <# /* * This is our main field template. It's called for every field type. * Note that must have ONE top-level, wrapping element. i.e. a div/span/etc that wraps all of the template. */ #> <# /* * Render our label. */ #> {{{ data.renderLabel() }}} <# /* * Render our field element. Uses the template for the field being rendered. */ #> <div class="nf-field-element">{{{ data.renderElement() }}}</div> <# /* * Render our Description Text. */ #> {{{ data.renderDescText() }}} </div> </script> <script id="tmpl-nf-field-wrap-no-label" type="text/template"> <div id="nf-field-{{{ data.id }}}-wrap" class="{{{ data.renderWrapClass() }}}" data-field-id="{{{ data.id }}}"> <div class="nf-field-label"></div> <div class="nf-field-element">{{{ data.renderElement() }}}</div> <div class="nf-error-wrap"></div> </div> </script> <script id="tmpl-nf-field-wrap-no-container" type="text/template"> {{{ data.renderElement() }}} <div class="nf-error-wrap"></div> </script> <script id="tmpl-nf-field-label" type="text/template"> <div class="nf-field-label"> <# if ( data.type === "listcheckbox" || data.type === "listradio" ) { #> <span id="nf-label-field-{{{ data.id }}}" class="nf-label-span {{{ data.renderLabelClasses() }}}"> {{{ ( data.maybeFilterHTML() === 'true' ) ? _.escape( data.label ) : data.label }}} {{{ ( 'undefined' != typeof data.required && 1 == data.required ) ? '<span class="ninja-forms-req-symbol">*</span>' : '' }}} {{{ data.maybeRenderHelp() }}} </span> <# } else { #> <label for="nf-field-{{{ data.id }}}" id="nf-label-field-{{{ data.id }}}" class="{{{ data.renderLabelClasses() }}}"> {{{ ( data.maybeFilterHTML() === 'true' ) ? _.escape( data.label ) : data.label }}} {{{ ( 'undefined' != typeof data.required && 1 == data.required ) ? '<span class="ninja-forms-req-symbol">*</span>' : '' }}} {{{ data.maybeRenderHelp() }}} </label> <# } #> </div> </script> <script id="tmpl-nf-field-error" type="text/template"> <div class="nf-error-msg nf-error-{{{ data.id }}}">{{{ data.msg }}}</div> </script><script id="tmpl-nf-form-error" type="text/template"> <div class="nf-error-msg nf-error-{{{ data.id }}}">{{{ data.msg }}}</div> </script><script id="tmpl-nf-field-input-limit" type="text/template"> {{{ data.currentCount() }}} {{{ nfi18n.of }}} {{{ data.input_limit }}} {{{ data.input_limit_msg }}} </script><script id="tmpl-nf-field-null" type="text/template"> </script><script id="tmpl-nf-field-hidden" type="text/template"> <input type="hidden" id="nf-field-{{{ data.id }}}" name="nf-field-{{{ data.id }}}" class="{{{ data.renderClasses() }}} nf-element" type="text" value="{{{ _.escape( data.value ) }}}" {{{ data.renderPlaceholder() }}}> </script> <script id='tmpl-nf-field-input' type='text/template'> <input id="nf-field-{{{ data.id }}}" name="nf-field-{{{ data.id }}}" aria-invalid="false" aria-describedby="nf-error-{{{ data.id }}} nf-description-{{{ data.id }}}" class="{{{ data.renderClasses() }}} nf-element" type="text" value="{{{ _.escape( data.value ) }}}" {{{ data.renderPlaceholder() }}} {{{ data.maybeDisabled() }}} aria-labelledby="nf-label-field-{{{ data.id }}}" {{{ data.maybeRequired() }}} > </script> <script id="tmpl-nf-field-listcheckbox" type="text/template"> <ul aria-describedby="nf-error-{{{ data.id }}} nf-description-{{{ data.id }}}"> {{{ data.renderOptions() }}} </ul> </script> <script id='tmpl-nf-field-listcheckbox-option' type='text/template'> <# if ( ! data.visible ) { return '' } #> <li> <input type="checkbox" id="nf-field-{{{ data.fieldID }}}-{{{ data.index }}}" name="nf-field-{{{ data.fieldID }}}" class="{{{ data.classes }}} nf-element {{{ ( data.isSelected ) ? ' nf-checked' : '' }}}" value="{{{ data.value }}}" {{{ ( data.isSelected ) ? 'checked="checked"' : '' }}} aria-labelledby="nf-label-field-{{{ data.fieldID }}}-{{{ data.index }}}" <# if( data.required ) { #> required aria-required="true" <# } #> > <label for="nf-field-{{{ data.fieldID }}}-{{{ data.index }}}" id="nf-label-field-{{{ data.fieldID }}}-{{{ data.index }}}" class="{{{ ( data.isSelected ) ? 'nf-checked-label' : '' }}}">{{{ data.label }}}</label> </li> </script> <script id='tmpl-nf-field-listcheckbox-other' type='text/template'> <li {{{ ( ! data.visible ) ? 'style="display:none"' : '' }}}> <input type="checkbox" id="nf-field-{{{ data.fieldID }}}-other" name="nf-field-{{{ data.fieldID }}}" class="{{{ data.classes }}} nf-element" value="nf-other" {{{ ( ! data.valueFound ) ? 'checked="checked"' : '' }}} aria-labelledby="nf-label-field-{{{ data.fieldID }}}-other" <# if( data.required ) { #> required aria-required="true" <# } #> > <label id="nf-label-field-{{{ data.fieldID }}}-other">Other {{{ data.renderOtherText() }}} </label> </li> </script> <script id='tmpl-nf-field-listcheckbox-other-text' type='text/template'> <input type="text" name="nf-field-{{{ data.fieldID }}}" class="nf-element" value="{{{ data.currentValue }}}"> </script> <script id="tmpl-nf-field-textarea" type="text/template"> <textarea id="nf-field-{{{ data.id }}}" name="nf-field-{{{ data.id }}}" aria-invalid="false" aria-describedby="nf-error-{{{ data.id }}} nf-description-{{{ data.id }}}" class="{{{ data.renderClasses() }}} nf-element" {{{ data.renderPlaceholder() }}} {{{ data.maybeDisabled() }}} {{{ data.maybeDisableAutocomplete() }}} {{{ data.maybeInputLimit() }}} aria-labelledby="nf-label-field-{{{ data.id }}}" {{{ data.maybeRequired() }}} >{{{ _.escape( data.value ) }}}</textarea> </script> <!-- Rich Text Editor Templates --> <script id="tmpl-nf-rte-media-button" type="text/template"> <span class="dashicons dashicons-admin-media"></span> </script> <script id="tmpl-nf-rte-link-button" type="text/template"> <span class="dashicons dashicons-admin-links"></span> </script> <script id="tmpl-nf-rte-unlink-button" type="text/template"> <span class="dashicons dashicons-editor-unlink"></span> </script> <script id="tmpl-nf-rte-link-dropdown" type="text/template"> <div class="summernote-link"> URL <input type="url" class="widefat code link-url"> <br /> Text <input type="url" class="widefat code link-text"> <br /> <label> <input type="checkbox" class="link-new-window"> {{{ nfi18n.fieldsTextareaOpenNewWindow }}} </label> <input type="button" class="cancel-link extra" value="Cancel"> <input type="button" class="insert-link extra" value="Insert"> </div> </script> <script id="tmpl-nf-field-submit" type="text/template"> <# let myType = data.type if('save'== data.type){ myType = 'button' } #> <input id="nf-field-{{{ data.id }}}" class="{{{ data.renderClasses() }}} nf-element " type="{{{myType}}}" value="{{{ ( data.maybeFilterHTML() === 'true' ) ? _.escape( data.label ) : data.label }}}" {{{ ( data.disabled ) ? 'aria-disabled="true" disabled="true"' : '' }}}> </script><script id='tmpl-nf-field-button' type='text/template'> <button id="nf-field-{{{ data.id }}}" name="nf-field-{{{ data.id }}}" class="{{{ data.classes }}} nf-element"> {{{ ( data.maybeFilterHTML() === 'true' ) ? _.escape( data.label ) : data.label }}} </button> </script> <!--end wordpress footer--> </div><!--Wrapper--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script type="text/javascript" src="https://centerforinquiry.org/js/new/main_init.js"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10