WP_Customize_Manager::add_customize_screen_to_heartbeat_settings( array $settings ): array

Filters heartbeat settings for the Customizer.


Parameters

$settings array Required
Current settings to filter.

Top ↑

Return

array Heartbeat settings.


Top ↑

Source

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

public function add_customize_screen_to_heartbeat_settings( $settings ) {
	global $pagenow;

	if ( 'customize.php' === $pagenow ) {
		$settings['screenId'] = 'customize';
	}

	return $settings;
}

Top ↑

Changelog

Changelog
Version Description
4.9.0 Introduced.

Top ↑

User Contributed Notes

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