WP_Customize_Widgets::customize_dynamic_partial_args() WordPress Method

The WP_Customize_Widgets::customize_dynamic_partial_args() method is used to filter the arguments used when constructing a dynamic partial.

WP_Customize_Widgets::customize_dynamic_partial_args( array|false $partial_args, string $partial_id ) #

Filters arguments for dynamic widget partials.


Parameters

$partial_args

(array|false)(Required)Partial arguments.

$partial_id

(string)(Required)Partial ID.


Top ↑

Return

(array) (Maybe) modified partial arguments.


Top ↑

Source

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

	public function customize_dynamic_partial_args( $partial_args, $partial_id ) {
		if ( ! current_theme_supports( 'customize-selective-refresh-widgets' ) ) {
			return $partial_args;
		}

		if ( preg_match( '/^widget\[(?P<widget_id>.+)\]$/', $partial_id, $matches ) ) {
			if ( false === $partial_args ) {
				$partial_args = array();
			}
			$partial_args = array_merge(
				$partial_args,
				array(
					'type'                => 'widget',
					'render_callback'     => array( $this, 'render_widget_partial' ),
					'container_inclusive' => true,
					'settings'            => array( $this->get_setting_id( $matches['widget_id'] ) ),
					'capability'          => 'edit_theme_options',
				)
			);
		}

		return $partial_args;
	}


Top ↑

Changelog

Changelog
VersionDescription
4.5.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.

Show More