Pass URL parameters from the embedded page URL to iframe source URL.
This plugin will parse the web address on page load looking for parameters, and add those parameters to the source URL for any iframe with a specific ID.
Example use case: pass discount and affiliate codes via page URL to embedded Eventbrite tickets widgets.
/wp-content/plugins/
directoryIn order for this plugin to pass the parameters to an iframe’s source URL, you have to add a specific id, rwcGetParams, to the iframe. For example
<iframe src="https://wordpress.org"></iframe>
should become
<iframe id="rwcGetParams" src="https://wordpress.org"></iframe>
Once you have added that id to the iframe, the plugin will automatically find any parameters in the URL and pass them on.
No. Currently, this plugin will NOT support multiple iframes on the same page, unless you want them all to load the same content.
Yes, this plugin will function with different iframes loading unique content, so long as they are on different pages of your website.
If your iframe source URL already has parameters we take that into account and don’t add another question mark. Everything will work as expected.