2014-03-19 65 views
0

我從Wordpress manage_posts_columns過濾器中獲取了簡單數組,以更改自定義帖子類型admin中的列。陣列看起來像PHP - 將陣列中的元素移動到第二位

$columns = array ('lastname' => 'Lastname', 'firstname' => 'Firstname', 'city' => 'City'); 

和我添加ID列

$columns['id'] = 'ID'; 

我需要id元素移動到所述陣列中的第二位置。如何才能做到這一點?

+0

用於什麼?關聯數組不需要排序。 –

+0

Wordpress管理中的列以數組元素的順序顯示 - 我需要ID列處於第二位。 – user1049961

+0

可能的重複http://stackoverflow.com/questions/1783089/array-splice-for-associative-arrays – MLeFevre

回答

相關問題