Fix array_key_exists conditional.

This commit is contained in:
Jeff Ong 2021-04-27 12:19:31 -04:00
parent 0d466f03f1
commit 5ffa357602

View file

@ -68,7 +68,7 @@ function blank_canvas_blocks_fonts_url() {
}
$custom_data = $theme_data['defaults']['custom'];
if ( array_key_exists( 'fontsToLoadFromGoogle', $custom_data ) ) {
if ( ! array_key_exists( 'fontsToLoadFromGoogle', $custom_data ) ) {
return '';
}