WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
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 || 'attachment' == $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 |