I asked this before, forgot it, and now have the same question again from someone whose site I'm maintaining. A list of random links to older news items. Same idea as random images, but now for news posts. I can't do it myself, but perhaps there is someone who could modify the printLatestNews() function into printRandomNews() to create a list of lets say three links?
Comments
`$randomnews = query_full_array( "SELECT titlelink FROM ".prefix('news')." ORDER BY RAND() LIMIT 3")`
Then use the object model with the result array to print the actual stuff you need.