I have come across a situation where the administrator, for security reasons, has set allow_url_fopen in php.ini to false.....basically disabling the URL tag. I have used the URL tag in previous installations to bring content from other sections of the same site. Although Wcms has a bunch of nice ways to list links to articles, it would be nice to have a rep tag that displays them, which brings content from other sections of the site. In essense, it would need the article ID as the parameter, so the tag might be something like:
I have a task of showing (on the home page) an article that exists in another section, The query is based on the day of the week, so basically I was thinking to casing the parameter $whichDay = time("l') translate to the appropriate article ID, and then display the contents of that article (consists of only title, subtitle & summary). I would imagine it can be hard coded, but the concept of
displaying articles based on the ID parameter might be a nice additional feature, bypassing the use of URL tag to display internal articles/content....
Just an idea.....