wordpress: add custom meta-box to pages overview not only to posts/pages?
问题 I know how to add meta boxes to pages/posts/custom_post_type ($post_type) pages: $screens = array( 'post', 'page' ); foreach ( $screens as $screen ) { add_meta_box( 'myplugin_sectionid', __( 'My Post Section Title', 'myplugin_textdomain' ), 'myplugin_meta_box_callback', $screen ); } but how do i add a meta box to the pages-overview? i need a link-list there to some special pages ... I know there are plugins who can do this: http://wordpress.org/plugins/meta-box/screenshots/ but only on posts