WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
114 | * @return WP_Customize_Partial The instance of the panel that was added. |
115 | */ |
116 | public function add_partial( $id, $args = array() ) { |
117 | if ( $id instanceof WP_Customize_Partial ) { |
118 | $partial = $id; |
119 | } else { |
120 | $class = 'WP_Customize_Partial'; |
121 |
|
122 | /** This filter is documented in wp-includes/customize/class-wp-customize-selective-refresh.php */ |
123 | $args = apply_filters( 'customize_dynamic_partial_args', $args, $id ); |
124 |
|
125 | /** This filter is documented in wp-includes/customize/class-wp-customize-selective-refresh.php */ |
126 | $class = apply_filters( 'customize_dynamic_partial_class', $class, $id, $args ); |
127 |
|
128 | $partial = new $class( $this, $id, $args ); |
129 | } |
130 |
|
131 | $this->partials[ $partial->id ] = $partial; |
132 | return $partial; |
Line | Code |
253 | * For a dynamic partial to be registered, this filter must be employed |
254 | * to override the default false value with an array of args to pass to |
255 | * the WP_Customize_Partial constructor. |
256 | * |
257 | * @since 4.5.0 |
258 | * |
259 | * @param false|array $partial_args The arguments to the WP_Customize_Partial constructor. |
260 | * @param string $partial_id ID for dynamic partial. |
261 | */ |
262 | $partial_args = apply_filters( 'customize_dynamic_partial_args', $partial_args, $partial_id ); |
263 | if ( false === $partial_args ) { |
264 | continue; |
265 | } |
266 |
|
267 | /** |
268 | * Filters the class used to construct partials. |
269 | * |
270 | * Allow non-statically created partials to be constructed with custom WP_Customize_Partial subclass. |
271 | * |