I’m running a WordPress website and I have a <marquee>
on the front page that runs the news.
Is it possible to have it dynamically generate the news? What do I mean by that?
Would it be possible to make it so that whenever a new post is made with a category of “News”, it will automatically be fed into the <marquee>
on the front page, along with the five older news posts, such that the six most recent news posts are being <marqueed>
in the front page, and so that the user doesn’t have to go into the html code to manually add in entries.
Is this too far out of reach? Any thoughts?
Thanks!
Amit
Actually, if I think about it in simple terms, it seems like this can be an easy task to accomplish, no?
Just have a loop showing posts with the category of news on the front page and wrap that up with a
<marquee>
tag. I think that should work.