-1

Hello how do I access the attachments array here, for example how do I return the permalink field:

  Array ( [name] => Temp List 
          [attachments] => Array ( 
             [32107] => Array ( 
               [id] => 32107 
               [permalink] => /fred 
               [image] => http://wp-content/uploads/2017/11/f20e4f030a09f2a87740715f15679aa5-3-768x1154.jpg 
               [thumbnail] => http://wp-content/uploads/2017/11/f20e4f030a09f2a87740715f15679aa5-3-200x300.jpg 
               [name] => fred 
               ) 
             ) 
           )

I know there are many questions on arrays but I have tried every way and cant seem to get it.

Many thanks

Naveed Ramzan
  • 3,565
  • 3
  • 25
  • 30
user43251
  • 225
  • 1
  • 11

1 Answers1

-1

Try like this

   $array['attachments']['32107']['permalink']
K.B
  • 885
  • 5
  • 10