Could we help you? Please click the banners. We are young and desperately need the money
Seit WordPress 3.8 kann die Anzahl Spalten nicht mehr durch den User bestimmt werden. Stattdessen wird das Dashboard Layout durch das gewählte Template bestimmt (starting with WordPress 3.8 the Dashboard layout - and thus the amount of columns within the Dashboard configuration - has to be set within the template).
Editiere die Datei functions.php und passe die Werte entsprechend deinen Bedürfnissen an (edit the file functions.php and add the following lines. Adapt the number by the amount of columns you'd like to use):
/* set the Dashboard to a 3-column layout */ function dashboard_set_column($columns) { $columns['dashboard'] = 3; return $columns; } add_filter('screen_layout_columns', 'dashboard_set_column'); function shapeSpace_screen_layout_dashboard() { return 3; } add_filter('get_user_option_screen_layout_dashboard', 'shapeSpace_screen_layout_dashboard');