Skip to content

Instantly share code, notes, and snippets.

@certainlyakey
Last active April 3, 2024 21:12
Show Gist options
  • Save certainlyakey/9da9bab22cd073ee486d to your computer and use it in GitHub Desktop.
Save certainlyakey/9da9bab22cd073ee486d to your computer and use it in GitHub Desktop.
Wordpress - Limit pages nesting depth to 2nd level
//Limit pages nesting depth to 2nd level
//caution! by default affects all hierarchical CPTs
function limit_pages_nesting($a) {
$a['depth'] = 1;
return $a;
}
add_action('page_attributes_dropdown_pages_args','limit_pages_nesting');
@crstauf
Copy link

crstauf commented Apr 3, 2024

Does not work in era of Gutenberg: WordPress/gutenberg#9089.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment