WordPress 3.8 正式版已經發佈,改版後的儀表盤默認隻能2欄佈局,而且”顯示選項“中已經移除瞭佈局選項。
如果你習慣以單欄顯示,可以將下面的代碼添加到主題的 functions.php ,就可以恢復佈局選項,你就可以選擇單欄或2欄顯示(測試最多隻能2欄)
1 2 3 4 5 6 7 8 9 10 11 12 |
/** * 將 WordPress 3.8 儀表盤設置為單欄佈局 * https://www.wpdaxue.com/wordpress-3-8-single-column-dashboard.html */ function wpdx_screen_layout_columns($columns) { $columns['dashboard'] = 2; return $columns; } add_filter('screen_layout_columns', 'wpdx_screen_layout_columns'); function wpdx_screen_layout_dashboard() { return 2; } add_filter('get_user_option_screen_layout_dashboard', 'wpdx_screen_layout_dashboard'); |
/**
* 將 WordPress 3.8 儀表盤設置為單欄佈局
* https://www.wpdaxue.com/wordpress-3-8-single-column-dashboard.html
*/
function wpdx_screen_layout_columns($columns) {
$columns[‘dashboard’] = 2;
return $columns;
}
add_filter(‘screen_layout_columns’, ‘wpdx_screen_layout_columns’); function wpdx_screen_layout_dashboard() { return 2; }
add_filter(‘get_user_option_screen_layout_dashboard’, ‘wpdx_screen_layout_dashboard’);