//Funcion de imagenes para slider
function image_box ($imgs) {
$matches = explode(",", $imgs);
foreach($matches as $var) {
if ($var != "") {
$thumb_var = str_replace(get_option('home')."/wp-content/uploads/imgs/", "", $var);
$single_thumb_img_url = get_bloginfo('template_url')."/scripts/resize.php?url=".$var."&size=500x350c50";
echo "<li><img src=\"$single_thumb_img_url\" alt=\"". get_the_title() ."\" /></li>"."\n";
} else {
if($matches[0] == ""){
}
}
}
}
function image_thumbnail ($imgs) {
$matches = explode(",", $imgs);
foreach($matches as $var) {
if ($var != "") {
$thumbnail_var = str_replace(get_option('home')."/wp-content/uploads/imgs/", "", $var);
$single_thumbnail_img_url = get_bloginfo('template_url')."/scripts/resize.php?url=".$var."&size=40x40c50";
echo "<li><a href=\"javascript:;\"><img class=\"aligncenter\" src=\"$single_thumbnail_img_url\" width=\"40px\" height=\"40px\" alt=\"".get_the_title()."\" /></a><li>"."\n";
} else {
if ( $matches[0] == "") {
}
}
}
}