Warning: implode(): Invalid arguments passed in example.php on lines 647 & 648
-
Hi, i updated my wordpress site and now i have a problem. Please help me for fixing this. Thanks.
// Font Rule $font = json_decode( $mod ); if ( isset( $font->family->name ) && '' != $font->family->name ) { if ( isset( $font->family->fonttype ) && 'google' == $font->family->fonttype ) { $user_subsets = themify_check( 'setting-webfonts_subsets' ) ? themify_get( 'setting-webfonts_subsets' ) : array('latin'); $font_hash = $font->family->name . $font->family->variant . implode(',', $user_subsets); /*This line is 647*/ wp_enqueue_style( 'custom-google-fonts-' . md5($font_hash), themify_https_esc( 'https://fonts.googleapis.com/css' ) . '?family=' . str_replace( ' ', '+', $font->family->name ) . ':' . $font->family->variant . '&subset=' . implode(',', $user_subsets) ); /*This line is 648*/ } $out .= sprintf("\n\tfont-family:%s;", $prefix . $font->family->name . $suffix ); }
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Warning: implode(): Invalid arguments passed in example.php on lines 647 & 648’ is closed to new replies.