b0y-101 Mini Shell


Current Path : E:/www/km/wp2/wp-content/plugins/gutenberg/lib/experimental/
File Upload :
Current File : E:/www/km/wp2/wp-content/plugins/gutenberg/lib/experimental/behaviors.php

<?php
/**
 * Behaviors.
 *
 * Updates the block editor settings with the theme's behaviors.
 *
 * @package gutenberg
 */

add_filter(
	'block_editor_settings_all',
	function( $settings ) {
		$theme_data = WP_Theme_JSON_Resolver_Gutenberg::get_merged_data()->get_data();
		if ( array_key_exists( 'behaviors', $theme_data ) ) {
			$settings['behaviors'] = $theme_data['behaviors'];
		}
		return $settings;
	},
	PHP_INT_MAX
);

Copyright © 2019 by b0y-101