This commit is contained in:
Alexander Agnarson 2021-07-03 13:23:02 +02:00
parent cf9998ad1b
commit 3896aa0cc0
15 changed files with 60 additions and 34 deletions

View file

@ -91,8 +91,10 @@ class Kirki_Modules_CSS {
return;
}
// Admin styles, adds compatibility with the new WordPress editor (Gutenberg).
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_styles' ), 100 );
if ( ! is_customize_preview() ) {
// Admin styles, adds compatibility with the new WordPress editor (Gutenberg).
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_styles' ), 100 );
}
add_action( 'wp', array( $this, 'print_styles_action' ) );