gutenberg_css() ); } /** * Add gutenberg inline styles to editor screen. * * @since 1.0.1 */ public function gutenberg_css() { /** * Filter inline styles to be injected to Gutenberg Editor screen. * * @since 1.0.1 * * @param string $css String of inline styles or empty string. */ $css = apply_filters( 'aamla_gutenberg_styles', '' ); if ( ! $css ) { return ''; } return aamla_prepare_css( $css ); } } GutenBerg::init();