Nested insert pages
-
I read a couple of identical questions on the forum but I’ve tried your suggestion and nothing changed, so I want to make sure the problem is the same. I have three pages: A, B and C. In page A I insert the code insert page which includes page B and in page B I insert the code insert page which includes page C. Result is that page A only displays page B. Is this something I fix using the code to disable the insert_pages_apply_nesting_check? Cause I’ve pasted the code
function theme_init() { // Disable nesting check to allow inserted pages within inserted pages. add_filter( 'insert_pages_apply_nesting_check', function ( $should_apply ) { return false; } ); } add_action( 'init', 'theme_init' );
into my theme functions.php but I had no luck…
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Nested insert pages’ is closed to new replies.