Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: should_load_separate_core_block_assets

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
2378       *
2379       * Returning false loads all core block assets, regardless of whether they are rendered
2380       * in a page or not. Returning true loads core block assets only when they are rendered.
2381       *
2382       * @since 5.8.0
2383       *
2384       * @param bool $load_separate_assets Whether separate assets will be loaded.
2385       *                                   Default false (all block assets are loaded, even when not used).
2386       */
2387      return apply_filters( 'should_load_separate_core_block_assets', false );
2388 }
2389
2390 /**
2391  * Enqueues registered block scripts and styles, depending on current rendered
2392  * context (only enqueuing editor scripts while in context of the editor).
2393  *
2394  * @since 5.0.0
2395  *
2396  * @global WP_Screen $current_screen WordPress current screen object.