customize_render_section_{$this->id} WordPress Action Hook

The customize_render_section_{$this->id} hook is used to render a Customizer section. This hook is fired when the Customizer is rendering a given section. The dynamic portion of the hook name, $this->id, refers to the section ID. This hook allows you to add your own content to a Customizer section. You can use this hook to display a description of the section, or any other content that you want to add.

do_action( "customize_render_section_{$this->id}" ) #

Fires before rendering a specific Customizer section.


Description

The dynamic portion of the hook name, $this->id, refers to the ID of the specific Customizer section to be rendered.


Top ↑

Source

File: wp-includes/class-wp-customize-section.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
3.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.