Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
// generate XHTML with thumbnail and link to picture view.
print '<img class="photos" src="'.plogger_get_collection_thumb().'" title="'.$desc.'" alt="'.$desc.'" />';
and change it to read:// generate XHTML with thumbnail and link to picture view.
$thumb_query = "SELECT * FROM `".TABLE_PREFIX."pictures` WHERE `parent_collection`='".plogger_get_collection_id()."' ORDER BY `id` DESC LIMIT 4";
$thumb_result = run_query($thumb_query);
while($thumb_data = mysql_fetch_assoc($thumb_result)){
print '<img class="photos" src="'.generate_thumb($thumb_data['path'], $thumb_data['id'], THUMB_SMALL).'" title="'.$desc.'" alt="'.$desc.'"/>';;
}
$thumb_query = "SELECT * FROM `".TABLE_PREFIX."pictures` WHERE `parent_collection`='".plogger_get_collection_id()."' ORDER BY RAND() LIMIT 4";
$thumb_query = "SELECT * FROM `".PLOGGER_TABLE_PREFIX."pictures` WHERE `parent_collection`='".plogger_get_collection_id()."' ORDER BY `id` DESC LIMIT 4";
$thumb_query = "SELECT * FROM `".PLOGGER_TABLE_PREFIX."pictures` WHERE `parent_collection`='".plogger_get_collection_id()."' ORDER BY RAND() LIMIT 4";
1 to 11 of 11