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 |
|---|---|
| 254 | * @param string $text Placeholder text. Default 'Type / to choose a block'. |
| 255 | * @param WP_Post $post Post object. |
| 256 | */ |
| 257 | $body_placeholder = apply_filters( 'write_your_story', __( 'Type / to choose a block' ), $post ); |
| 258 | |
| 259 | $editor_settings = array( |
| 260 | 'availableTemplates' => $available_templates, |
| 261 | 'disablePostFormats' => ! current_theme_supports( 'post-formats' ), |
| 262 | /** This filter is documented in wp-admin/edit-form-advanced.php */ |
| 263 | 'titlePlaceholder' => apply_filters( 'enter_title_here', __( 'Add title' ), $post ), |
| 264 | 'bodyPlaceholder' => $body_placeholder, |
| 265 | 'autosaveInterval' => AUTOSAVE_INTERVAL, |
| 266 | 'richEditingEnabled' => user_can_richedit(), |
| 267 | 'postLock' => $lock_details, |
| 268 | 'postLockUtils' => array( |
| 269 | 'nonce' => wp_create_nonce( 'lock-post_' . $post->ID ), |
| 270 | 'unlockNonce' => wp_create_nonce( 'update-post_' . $post->ID ), |
| 271 | 'ajaxUrl' => admin_url( 'admin-ajax.php' ), |
| 272 | ), |