MOON
Server: Apache
System: Linux vps.erhabenn.com.br 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User: machen (1008)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /disk001/machen/public_html/support/wp-content/themes/learnmore/inc/core/gutenberg.php
<?php
/**
 * Declaring Gutenberg support.
 *
 * @package LearnMore
 */

if ( ! function_exists( 'learnmore_add_gutenberg_support' ) ) :

	/**
	 * Adds support for Gutenberg blocks.
	 *
	 * @return void
	 */
	function learnmore_add_gutenberg_support() {
		/*
		The embed blocks automatically apply styles to embedded content
		 * to reflect the aspect ratio of content that is embedded in an iFrame.
		 */
		add_theme_support( 'responsive-embeds' );

		// /* In the Guteberg plugin 8.3, link color control is available to
		// * link color control is available to the Paragraph,
		// * Heading, Group, Columns, and Media & Text blocks.
		// */
		add_theme_support( 'experimental-link-color' );
		add_theme_support( 'align-wide' );
	}

endif;

add_action( 'after_setup_theme', 'learnmore_add_gutenberg_support' );