Layout
Screen Options
Edit PageAdd New
Permalink: https://www.acf-extended.com/screen-layouts
Field Group
Post Edit screens have been enhanced allowing up to 3 columns layout and multiple variations. The Screen Layouts settings can be found in the Screen options settings, on the top right corner of all post types.
The Screen Layouts module is enabled by default. It can be enabled and disabled in the Settings UIPRO, or with the following code:
// Using acf/init
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){
// Disable Screen Layouts
acf_update_setting('acfe/modules/screen_layouts', false);
}
// Or using acfe/init
add_action('acfe/init', 'my_acfe_modules');
function my_acfe_modules(){
// Disable Screen Layouts
acfe_update_setting('modules/screen_layouts', false);
}