Styling & Publishing Feeds

Embedding Your Feed

Embed your Curator feed on any website using a simple JavaScript code snippet. The embed code automatically updates with new content from your connected sources.

Get Your Embed Code

  1. Open your feed in the Curator dashboard

  2. Click Embed or Get Code

  3. Copy the JavaScript snippet

  4. Paste it into your website's HTML where you want the feed to appear

Make sure you've clicked Publish or Get Code before embedding. Unpublished changes won't appear on your live feed.

Understanding the Embed Code

Your embed code has two parts:

<!-- Container where your feed will display -->
<div id="curator-feed-YOUR-ID"></div>

<!-- Script that loads your feed -->
<script type="text/javascript">
/* Your feed initialization code */
</script>

The <div> container defines where on the page your feed appears. The <script> tag loads the feed content and styling.

Always paste both parts together. The feed won't display if you only include the div or only include the script.

Where to Paste the Code

  • HTML/Custom sites: Paste directly into your page's HTML where you want the feed

  • WordPress: Use the WordPress plugin or add to a Custom HTML block

  • Webflow: Follow the Webflow integration guide

  • SharePoint: See SharePoint implementation steps

Multiple Feeds

To show multiple feeds on one page, paste each feed's complete embed code (div + script) separately. See Multiple Feeds on One Page for details.

Your feed auto-updates based on your plan's refresh intervalโ€”24 hours for Free, 60 minutes for Pro, 15 minutes for Business.

Troubleshooting

If your feed isn't appearing, check:

  • You clicked Publish or Get Code in the dashboard

  • Both the div and script are pasted correctly

  • Your browser cache is cleared

See Troubleshooting Embed Issues for more help.

Was this helpful?