apply_filters( 'customize_dynamic_partial_class', string $partial_class, string $partial_id, array $partial_args )

Filters the class used to construct partials.


Description

Allow non-statically created partials to be constructed with custom WP_Customize_Partial subclass.


Top ↑

Parameters

$partial_class string
WP_Customize_Partial or a subclass.
$partial_id string
ID for dynamic partial.
$partial_args array
The arguments to the WP_Customize_Partial constructor.

Top ↑

Source

File: wp-includes/customize/class-wp-customize-selective-refresh.php. View all references

$partial_class = apply_filters( 'customize_dynamic_partial_class', $partial_class, $partial_id, $partial_args );


Top ↑

Changelog

Changelog
Version Description
4.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.