block_editor_rest_api_preload_paths

过滤钩子
apply_filters( 'block_editor_rest_api_preload_paths', $preload_paths, $block_editor_context )
参数
  • (string[]) $preload_paths Array of paths to preload.
    Required:
  • (WP_Block_Editor_Context) $block_editor_context The current block editor context.
    Required:
定义位置
相关勾子
block_editor_meta_box_hidden_fieldsblock_editor_settings_allblock_editor_no_javascript_messagerender_block_core_template_part_postshould_load_block_editor_scripts_and_styles
相关方法
block_editor_rest_api_preloaduse_block_editor_for_postget_block_editor_settingsblock_template_partuse_block_editor_for_post_type_wp_relative_upload_path
引入
5.8.0
弃用
-

block_editor_rest_api_preload_paths: 这是WordPress的一个过滤器钩子,允许开发者修改区块编辑器的REST API预加载路径。block_editor_rest_api_preload_paths钩子将默认的预加载路径作为一个参数传递,钩子函数可以返回一个修改后的预加载路径数组来代替使用。这对于调整REST API在块编辑器中的预加载行为很有用。

过滤REST API路径的数组,这些路径将被用于预装区块编辑器的通用数据。

$preload_paths = apply_filters( 'block_editor_rest_api_preload_paths', $preload_paths, $block_editor_context );

常见问题

FAQs
查看更多 >