Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: default_hidden_meta_boxes

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
95      // Hide slug boxes by default
96      if ( $use_defaults ) {
97           $hidden = array();
98           if ( 'post' == $screen->base ) {
99                if ( 'post' == $screen->post_type || 'page' == $screen->post_type )
100                     $hidden = array('slugdiv', 'trackbacksdiv', 'postcustom', 'postexcerpt', 'commentstatusdiv', 'commentsdiv', 'authordiv', 'revisionsdiv');
101                else
102                     $hidden = array( 'slugdiv' );
103           }
104           $hidden = apply_filters( 'default_hidden_meta_boxes', $hidden, $screen );
105      }
106
107      return apply_filters( 'hidden_meta_boxes', $hidden, $screen, $use_defaults );
108 }
109
110 /**
111  * Register and configure an admin screen option
112  *
113  * @since 3.1.0