Embed URL Format Estimated reading: 2 minutes 2 views To integrate your Changeloger content on an external website using an iframe, you must use the correct Embed URL format. This pattern ensures your product changelogs, feedback boards, or roadmaps are rendered correctly within the target environment. Embed URL PatternRequired ParametersImplementation Example Embed URL Pattern The standard structure for generating an embedded Changeloger view is as follows: https://yoursite.com/?cha_embed=1&product=PRODUCT_ID&type=TYPE&theme=THEME Required Parameters The URL relies on four primary query parameters to function correctly. Ensure these are accurately defined in your iframe source attribute: cha_embed: Must be set to 1 to initialize the embed mode.product: The specific PRODUCT_ID associated with the content you wish to display.type: Determines the content module, accepting values: releases, feedback, or roadmap.theme: Controls the color scheme, accepting light or dark values to match your external site design. Implementation Example Below is a practical example of how to implement this within an HTML iframe on your external website: <iframe src="https://yoursite.com/?cha_embed=1&product=5&type=releases&theme=light" width="100%" height="600" frameborder="0" style="border: 1px solid #e5e5e5; border-radius: 8px;"> </iframe> Always verify that your WordPress site allows cross-origin framing or that your security headers are configured to permit the specific domain where the embed will be hosted. Embed URL Format - PreviousGetting the Embed CodeNext - Embed URL FormatEmbedding on Your Website