Skip to content

Instantly share code, notes, and snippets.

@SiR-DanieL
Created October 13, 2016 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SiR-DanieL/6f0255cf2f8085cdaded98b89cb1fa60 to your computer and use it in GitHub Desktop.
Save SiR-DanieL/6f0255cf2f8085cdaded98b89cb1fa60 to your computer and use it in GitHub Desktop.
$foods = array(
array(
'id' => 4,
'name' => 'Banana',
'color' => 'Yellow',
),
array(
'id' => '5',
'name' => 'Apple',
'color' => 'Red',
),
array(
'id' => 2,
'name' => 'Lettuce',
'color' => 'Green',
),
array(
'id' => '7',
'name' => 'Apple',
'color' => 'Red',
),
);
$foods = wp_list_pluck( $foods, 'name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment