By shoutaway on
Hi guys,
I've been trying to show thumbnails in some blocks.
I found some good tips from here about showing thumbnails in the block.
And here's code I took and works fine.
< ? php
$numImage = 10;
$images = image_get_latest($numImage);
for($i=0;$i
echo l(image_display($images[$i], 'thumb'), 'node/'. $images[$i]->nid, array(), NULL, NULL, FALSE, TRUE);
}
? >
What I'd like to do is that I want to sort the thumbnails by rating result. Such as High rated and low rated.
Something like the Highly rated ones goes to one block and the lower rated ones goes to another.
Anyone knows how to sort thumbnails by rate?
Thanks in advance.