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