WordPress: How the heck do I embed more than one video?

2 replies
  • WEB DESIGN
  • |
I've figured out to get one embedded by removing the </object> tag, but why can't I get more than one video to show up?

I've Googled and searched around on WordPress for hours but I can't figure this one out.

Please help!

~S
#embed #heck #video #wordpress
  • Profile picture of the author luis23
    If you want to embed videos on Wordpress, you can just post and paste the whole code.

    By the way why did you take out the <object> tag, what you were trying to accomplish?

    How are you trying to insert the videos?

    This is an example of two embedded YouTube Videos with an space between them...

    Code:
    <p>
      <object width="640" height="385">
        <param name="movie" value="http://www.youtube.com/v/bwi9uqdfiMI?fs=1&amp;hl=en_US">
        </param>
        <param name="allowFullScreen" value="true">
        </param>
        <param name="allowscriptaccess" value="always">
        </param>
        <embed src="http://www.youtube.com/v/bwi9uqdfiMI?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed>
      </object>
    </p>
    <p>&nbsp;</p>
    <object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/MRsFv98pzlw?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/MRsFv98pzlw?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object>
    The same code in here with the videos centered and with an space between them...

    Code:
    <p align="center">
      <object width="640" height="385">
        <param name="movie" value="http://www.youtube.com/v/bwi9uqdfiMI?fs=1&amp;hl=en_US">
        </param>
        <param name="allowFullScreen" value="true">
        </param>
        <param name="allowscriptaccess" value="always">
        </param>
        <embed src="http://www.youtube.com/v/bwi9uqdfiMI?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed>
      </object>
    </p>
    <p align="center">&nbsp;</p>
    <p align="center">
      <object width="640" height="385">
        <param name="movie" value="http://www.youtube.com/v/MRsFv98pzlw?fs=1&amp;hl=en_US">
        </param>
        <param name="allowFullScreen" value="true">
        </param>
        <param name="allowscriptaccess" value="always">
        </param>
        <embed src="http://www.youtube.com/v/MRsFv98pzlw?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed>
      </object>
    </p>
    {{ DiscussionBoard.errors[3116052].message }}
    • Profile picture of the author Serendipitous
      Originally Posted by luis23 View Post

      If you want to embed videos on Wordpress, you can just post and paste the whole code.

      This is an example of two embedded YouTube Videos with an space between them...
      Ok, now this works. Thank you. None of what I found told me to put the video code into the parenthesis mark ups.


      Originally Posted by luis23 View Post

      By the way why did you take out the <object> tag, what you were trying to accomplish?

      How are you trying to insert the videos?
      I deleted the last </object> tag from the embed code because it was the only thing I found that worked, albeit, for a single video. Some video on youtube...

      Thanks for posting, I understand how to make the videos work now. YOU ROCK LUIS!

      ~S
      {{ DiscussionBoard.errors[3116545].message }}

Trending Topics