I have a movies folder called movies located in site root/wp-content/movies/. I also have a template creates in my theme called page-movies.php. And a wordpress page called movies using the page-movies.php template.
What is the correct way to display the list of movie urls in the movies folder on the movies page.
I've used a scandir() inside of A tags to display all the urls as "site/movies/movietitle.mp4" but I click thr link to the movie is loads nothing just a blank white page.
Is there a correct way I should be loading the list of movie urls onto a oage from a directory?
I have a movies folder called movies located in site root/wp-content/movies/. I also have a template creates in my theme called page-movies.php. And a wordpress page called movies using the page-movies.php template.
What is the correct way to display the list of movie urls in the movies folder on the movies page.
I've used a scandir() inside of A tags to display all the urls as "site/movies/movietitle.mp4" but I click thr link to the movie is loads nothing just a blank white page.
Is there a correct way I should be loading the list of movie urls onto a oage from a directory?
Share Improve this question edited Jan 30, 2019 at 7:42 fuxia♦ 107k39 gold badges255 silver badges461 bronze badges asked Jan 30, 2019 at 2:53 JeremyJeremy 31 bronze badge 1- Problem solved, used full url with http in the beginning to fix the issue. – Jeremy Commented Jan 30, 2019 at 20:36
1 Answer
Reset to default 0If you movies are stored in /wp-content/movies/
and the URLs are site/movies/movietitle.mp4
then the links are pointing to the wrong place.
Change the URL's to include the wp-content
path eg site/wp-content/movies/movietitle.mp4
Separate to your question, you could look at having your page-movies.php
template load the links into a video element using javascript.