Wordpress Database Gurus Needed

Vicare

Certified Peasant
Aug 3, 2010
105
1
0
I'm trying to disable the "parent page" dropdown from showing up when I go to edit page. I know I can disable it by clicking "Screen Options" but the problem is I have 10,000+ pages so my edit page is timing out and and I can't even get to the screen options.

Does anyone know how to disable it in the wordpress database itself? I can't find the part for screen options.

Thanks.
 


For anyone looking for the solution...

wp-admin/edit-form-advanced.php

Find this: if ( post_type_supports($post_type, 'page-attributes') )
add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', null, 'side', 'core');

And comment it out or remove it.