| Server IP : 172.67.153.42 / Your IP : 216.73.217.138 Web Server : Apache System : Linux vps-850873.bgcolombia.com 3.10.0-1160.144.1.el7.tuxcare.els5.x86_64 #1 SMP Wed May 13 12:31:54 UTC 2026 x86_64 User : melizav ( 1018) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/melizav/.trash/oceanwp/inc/third/ |
Upload File : |
<?php
/**
* Generate Dynamic CSS for Gutenberg Editor
*
* @package OceanWP WordPress theme
*/
// Start and run class
if( ! class_exists( 'OceanWP_Gutenberg_Editor' ) ) {
class OceanWP_Gutenberg_Editor {
/**
* Main Class Constructor
*
* @since 1.5.33
*/
public function __construct() {
// After setup theme - Gutenberg
add_action( 'after_setup_theme', array( $this, 'gutenberg_support' ), 10 );
}
public static function gutenberg_support() {
// Adding Gutenberg support
add_theme_support( 'align-wide' );
add_theme_support( 'wp-block-styles' );
add_theme_support( 'responsive-embeds' );
add_theme_support( 'editor-styles' );
add_editor_style( 'assets/css/gutenberg/gutenberg-editor.min.css' );
}
}
}
return new OceanWP_Gutenberg_Editor();