[pmwiki-users] Same question and a new one...perhaps a little difficult...

Anno anno at shroomery.org
Thu Nov 9 07:43:24 CST 2006


 > I'd
> also like to display a thumbnail of the latest
> uploaded image in the gallery.
> 
> Any way to do this?

You would be using custom markup

http://www.pmwiki.org/wiki/PmWiki/CustomMarkup

Markup('latestimage', 'end_',
   '/\\(:latestimage:\\)/e',
   "latestimage()");

function latestimage()
{
	determine the latest image and process
	....

	....

	....

	return (html code of the thumb linkeded to the image)

}





More information about the pmwiki-users mailing list