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 |
|---|---|
| 217 | * @param string $text Placeholder text. Default 'Type / to choose a block'. |
| 218 | * @param WP_Post $post Post object. |
| 219 | */ |
| 220 | $body_placeholder = apply_filters( 'write_your_story', __( 'Type / to choose a block' ), $post ); |
| 221 | |
| 222 | $editor_settings = array( |
| 223 | 'availableTemplates' => $available_templates, |
| 224 | 'disablePostFormats' => ! current_theme_supports( 'post-formats' ), |
| 225 | /** This filter is documented in wp-admin/edit-form-advanced.php */ |
| 226 | 'titlePlaceholder' => apply_filters( 'enter_title_here', __( 'Add title' ), $post ), |
| 227 | 'bodyPlaceholder' => $body_placeholder, |
| 228 | 'autosaveInterval' => AUTOSAVE_INTERVAL, |
| 229 | 'richEditingEnabled' => user_can_richedit(), |
| 230 | 'postLock' => $lock_details, |
| 231 | 'postLockUtils' => array( |
| 232 | 'nonce' => wp_create_nonce( 'lock-post_' . $post->ID ), |
| 233 | 'unlockNonce' => wp_create_nonce( 'update-post_' . $post->ID ), |
| 234 | 'ajaxUrl' => admin_url( 'admin-ajax.php' ), |
| 235 | ), |