[ad_1]
Hi
I would like to create in my WordPress site a page where the users can check the scheduling of every TV channel in my country.
At the moment I have a feed with all the data and the data are refreshed every day.
How do I print this data from the feed to this page, updating them every day without creating new pages, so on the same page?
[ad_2]
You could use an RSS feed. In the block editor there is a block for RSS feeds – although you would limited on the styling, unless you added custom CSS.
This is not really WordPress related tbh, you’d need to write a php function that parses the data (is your feed in json?), call it once a day with cron and store the parsed data locally.
Then just loop through the parsed data and display it on your page.
If you provide your feed link I could try to show you an example.