I deduced in WordPress an array with id pictures:
var_dump ($gt3_theme_pagebuilder["post-formats"]["images"]); Conclusion:
array(3) { [78]=> array(1) { ["attach_id"]=> string(4) "1739" } [279]=> array(1) { ["attach_id"]=> string(4) "2457" } [280]=> array(1) { ["attach_id"]=> string(4) "2458" } } Now I want to display pictures of all the photos by their ID:
foreach ($gt3_theme_pagebuilder as $key => $foto_id) { wp_get_attachment_image ($foto_id); } This code does not work. What am I doing wrong?