I have a problem with a wordpress installation. When I work locally, this function works properly:
function get_images_from_media_library() { $args = array(
That because you are using array dereferencing which is only available in PHP 5.4 and newer. You are using PHP 5.3 or older.
$array = wp_get_attachment_image_src($post->ID, 'full'); array_push($images, $array[0]);