Hallo bin neu und kein Programmierer und möchte auch keiner werden. Leider muss ich jetzt aber ein Array so anpassen das es richtig ausgegeben wird.
Ausgegben wird
Array
array(1) { ["bild_1"]=> array(9) { ["id"]=> int(27) ["alt"]=> string(0) "" ["title"]=> string(7) "ute7-10" ["caption"]=> string(0) "" ["description"]=> string(0) "" ["url"]=> string(90) "http://xx.de.dd31834.kasserver.com/wp-content/uploads/2013/09/ute7-10.jpg" ["width"]=> int(2048) ["height"]=> int(1536) ["sizes"]=> array(12) { ["thumbnail"]=> string(98) "[COLOR="Red"]http://xx.de.dd31834.kasserver.com/wp-content/uploads/2013/09/ute7-10-150x150.jpg[/COLOR]" ["thumbnail-width"]=> int(150) ["thumbnail-height"]=> int(150) ["medium"]=> string(98) "http:/xx.de.dd31834.kasserver.com/wp-content/uploads/2013/09/ute7-10-300x225.jpg" ["medium-width"]=> int(300) ["medium-height"]=> int(225) ["large"]=> string(99) "http://xx.de.dd31834.kasserver.com/wp-content/uploads/2013/09/ute7-10-1024x768.jpg" ["large-width"]=> int(1024) ["large-height"]=> int(768) ["property_poster"]=> string(97) "http://xx.de.dd31834.kasserver.com/wp-content/uploads/2013/09/ute7-10-100x80.jpg" ["property_poster-width"]=> int(100) ["property_poster-height"]=> int(80) } } }
Benötigt wird aber nur die thumbnail URL.
Versuch das jetzt schon seit 6 Stunden und bin noch keinen Schritt weiter.
Danke für Hilfe
PHP-Code:
$values = get_fields();
if($values)
{
foreach($values as $value)
{
echo $value . '<br>';
}
}
var_dump($values);
Array
array(1) { ["bild_1"]=> array(9) { ["id"]=> int(27) ["alt"]=> string(0) "" ["title"]=> string(7) "ute7-10" ["caption"]=> string(0) "" ["description"]=> string(0) "" ["url"]=> string(90) "http://xx.de.dd31834.kasserver.com/wp-content/uploads/2013/09/ute7-10.jpg" ["width"]=> int(2048) ["height"]=> int(1536) ["sizes"]=> array(12) { ["thumbnail"]=> string(98) "[COLOR="Red"]http://xx.de.dd31834.kasserver.com/wp-content/uploads/2013/09/ute7-10-150x150.jpg[/COLOR]" ["thumbnail-width"]=> int(150) ["thumbnail-height"]=> int(150) ["medium"]=> string(98) "http:/xx.de.dd31834.kasserver.com/wp-content/uploads/2013/09/ute7-10-300x225.jpg" ["medium-width"]=> int(300) ["medium-height"]=> int(225) ["large"]=> string(99) "http://xx.de.dd31834.kasserver.com/wp-content/uploads/2013/09/ute7-10-1024x768.jpg" ["large-width"]=> int(1024) ["large-height"]=> int(768) ["property_poster"]=> string(97) "http://xx.de.dd31834.kasserver.com/wp-content/uploads/2013/09/ute7-10-100x80.jpg" ["property_poster-width"]=> int(100) ["property_poster-height"]=> int(80) } } }
Benötigt wird aber nur die thumbnail URL.
Versuch das jetzt schon seit 6 Stunden und bin noch keinen Schritt weiter.
Danke für Hilfe
Kommentar