Fix array_key_exists conditional.
This commit is contained in:
parent
0d466f03f1
commit
5ffa357602
1 changed files with 1 additions and 1 deletions
|
@ -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 '';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue