Fix error Convert array to string on customizer filter
This commit is contained in:
parent
80986fec16
commit
3bdbc94923
|
@ -495,7 +495,8 @@ function tainacan_get_color_scheme_css( $colors ) {
|
|||
'link_color' => '',
|
||||
'backtransparent' => '',
|
||||
) );
|
||||
$filter = apply_filters( 'tainacan_customize_colors', $colors);
|
||||
|
||||
$filter = (has_filter('tainacan_customize_colors')) ? apply_filters( 'tainacan_customize_colors', $colors) : '';
|
||||
return <<<CSS
|
||||
/* Color Scheme */
|
||||
|
||||
|
|
Loading…
Reference in New Issue