Wordpress Syntax Error, unexpected [

后端 未结 1 580
遇见更好的自我
遇见更好的自我 2021-01-21 00:27

I have a problem with a wordpress installation. When I work locally, this function works properly:

function get_images_from_media_library() {
  $args = array(
           


        
1条回答
  •  礼貌的吻别
    2021-01-21 00:54

    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]);
    

    0 讨论(0)
提交回复
热议问题