customize_render_partials_after

动作钩子
do_action( 'customize_render_partials_after', $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_beforecustomize_render_partials_responsecustomize_partial_rendercustomize_dynamic_partial_argscustomize_render_control
相关方法
_wp_customize_loader_settingsis_customize_preview_custom_logo_header_stylescore_update_footer_wp_customize_publish_changesetwelcome_user_msg_filter
引入
4.5.0
弃用
-

customize_render_partials_after是WordPress中的一个动作,在自定义器完成渲染参数后触发。这个动作可以用来在部分内容渲染完毕后添加自定义逻辑或附加内容。

在参数被渲染后立即启动。

插件可能会做一些事情,比如调用wp_footer()来抓取脚本输出,并通过{@see ‘customize_render_partials_response’}过滤器返回它们。

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

常见问题

FAQs
查看更多 >