Embed content from other sites / use iFrames
Take the embed code that the other site (e.g., Google Calendar, Instagram, etc) gave you and:
Remove the front carrot (
<
) and replace it with an left-bracket ([
)Remove the closing tag (the
</iframe>
at the end of the code)Then remove the carrot at the end (
>
) and replace it with a right-bracket (]
).
An example - the parts that changed are in red:
So if Google gives you this: <
iframe src="blah blah blah etc...."
></iframe>
You'd change it to this: [
iframe src="blah blah blah etc...."
]
Official WOU source: https://wou.edu/wordpress/tutorials/adding-an-iframe/