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 |
---|---|
182 | * @param string $text Placeholder text. Default 'Type / to choose a block'. |
183 | * @param WP_Post $post Post object. |
184 | */ |
185 | $body_placeholder = apply_filters( 'write_your_story', __( 'Type / to choose a block' ), $post ); |
186 |
|
187 | $editor_settings = array( |
188 | 'availableTemplates' => $available_templates, |
189 | 'disablePostFormats' => ! current_theme_supports( 'post-formats' ), |
190 | /** This filter is documented in wp-admin/edit-form-advanced.php */ |
191 | 'titlePlaceholder' => apply_filters( 'enter_title_here', __( 'Add title' ), $post ), |
192 | 'bodyPlaceholder' => $body_placeholder, |
193 | 'autosaveInterval' => AUTOSAVE_INTERVAL, |
194 | 'styles' => get_block_editor_theme_styles(), |
195 | 'richEditingEnabled' => user_can_richedit(), |
196 | 'postLock' => $lock_details, |
197 | 'postLockUtils' => array( |
198 | 'nonce' => wp_create_nonce( 'lock-post_' . $post->ID ), |
199 | 'unlockNonce' => wp_create_nonce( 'update-post_' . $post->ID ), |
200 | 'ajaxUrl' => admin_url( 'admin-ajax.php' ), |