Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: block_editor_settings

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
368
369 /**
370  * Filters the settings to pass to the block editor.
371  *
372  * @since 5.0.0
373  *
374  * @param array   $editor_settings Default editor settings.
375  * @param WP_Post $post            Post being edited.
376  */
377 $editor_settings = apply_filters( 'block_editor_settings', $editor_settings, $post );
378
379 $init_script = <<<JS
380 ( function() {
381      window._wpLoadBlockEditor = new Promise( function( resolve ) {
382           wp.domReady( function() {
383                resolve( wp.editPost.initializeEditor( 'editor', "%s", %d, %s, %s ) );
384           } );
385      } );
386 } )();