• The donate method has changed and the nonprofit now wants to embed the page from the new donation platform. Can I do this without a plugin?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hey catherinejean!
    There are two ways to embed any site without plugin.

    1) Very first and classic way to embed any site is using iframe tag.
    <iframe width="100" height="100" src="https://www.your-domain.com/"></iframe>
    In this classic method, all you need to do is define the height, width, and source to embed any URL.

    2) Another way to embed website is using oEmbed tag
    <embed height="560" width="315" src="https://your-domain.com/" />
    With OEmbed tag, you can even style the container with CSS. It also doesn’t require a closing tag and all major browsers support it.
    Which is one of faster and easier way to embed content into WordPress.

    Hopefully, it works for you.
    Good luck.

    • This reply was modified 7 years, 4 months ago by magecomp.
Viewing 1 replies (of 1 total)
  • The topic ‘How can I embed another site without a plugin’ is closed to new replies.