customize_render_partials_before

动作钩子
do_action( 'customize_render_partials_before', $this, $partials )
参数
  • (WP_Customize_Selective_Refresh) $refresh Selective refresh component.
    Required:
  • (array) $partials Placements' context data for the partials rendered in the request. The array is keyed by partial ID, with each item being an array of the placements' context data.
    Required:
定义位置
相关勾子
customize_render_partials_aftercustomize_render_partials_responsecustomize_partial_rendercustomize_dynamic_partial_argscustomize_render_control
相关方法
_wp_customize_loader_settingsis_customize_preview_customizer_mobile_viewport_metaget_custom_header_markuppost_custom_meta_boxsanitize_title_for_query
引入
4.5.0
弃用
-

customize_render_partials_before 是WordPress中的一个动作,在Customizer开始渲染部分内容之前启动。这个动作可以用来在部分内容被渲染之前添加自定义逻辑或额外的内容。

在参数被渲染之前立即触发。

插件可以做一些事情,比如调用wp_enqueue_scripts()并收集一个可能在响应中被排队的脚本和样式的列表。

do_action( 'customize_render_partials_before', $this, $partials );

常见问题

FAQs
查看更多 >