Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: block_editor_preload_paths

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
56  * Preload common data by specifying an array of REST API paths that will be preloaded.
57  *
58  * Filters the array of paths that will be preloaded.
59  *
60  * @since 5.0.0
61  *
62  * @param string[] $preload_paths Array of paths to preload.
63  * @param WP_Post  $post          Post being edited.
64  */
65 $preload_paths = apply_filters( 'block_editor_preload_paths', $preload_paths, $post );
66
67 /*
68  * Ensure the global $post remains the same after API data is preloaded.
69  * Because API preloading can call the_content and other filters, plugins
70  * can unexpectedly modify $post.
71  */
72 $backup_global_post = $post;
73
74 $preload_data = array_reduce(