Alright, I found a solution.
As I already stated, I used both iframe and [embed] and one autoplays and one did not.
This worked for me
<video width="560" height="315" controls>
<source src="video.mp4" type="video/mp4">
</video>
Now if I wanted it to autoplay I would change the “controls” to “controls autoplay”
<video width="560" height="315" controls autoplay>
<source src="video.mp4" type="video/mp4">
</video>
Hope this helps
-
This reply was modified 7 years, 7 months ago by Nisroc.
Thread Starter
Nisroc
(@nisroc)
Solved I missed the code <?php body_class(”); ?> to the body tag
<body <?php body_class(”); ?>>
Thread Starter
Nisroc
(@nisroc)
Figured it out, sorry about this