add( array( 'selectors' => array( '.primary' ), 'declarations' => array( 'color' => $color ) ) ); } // Secondary Color $setting = 'secondary-color'; $mod = get_theme_mod( $setting, customizer_library_get_default( $setting ) ); if ( $mod !== customizer_library_get_default( $setting ) ) { $color = sanitize_hex_color( $mod ); Customizer_Library_Styles()->add( array( 'selectors' => array( '.secondary' ), 'declarations' => array( 'color' => $color ) ) ); } // Border Color $setting = 'border'; $mod = get_theme_mod( $setting, customizer_library_get_default( $setting ) ); if ( $mod !== customizer_library_get_default( $setting ) ) { $color = sanitize_hex_color( $mod ); Customizer_Library_Styles()->add( array( 'selectors' => array( '.border' ), 'declarations' => array( 'border-color' => $color ) ) ); } // Primary Font $setting = 'primary-font'; $mod = get_theme_mod( $setting, customizer_library_get_default( $setting ) ); $stack = customizer_library_get_font_stack( $mod ); if ( $mod != customizer_library_get_default( $setting ) ) { Customizer_Library_Styles()->add( array( 'selectors' => array( '.primary' ), 'declarations' => array( 'font-family' => $stack ) ) ); } // Secondary Font $setting = 'secondary-font'; $mod = get_theme_mod( $setting, customizer_library_get_default( $setting ) ); $stack = customizer_library_get_font_stack( $mod ); if ( $mod != customizer_library_get_default( $setting ) ) { Customizer_Library_Styles()->add( array( 'selectors' => array( '.secondary', ), 'declarations' => array( 'font-family' => $stack ) ) ); } } endif; add_action( 'customizer_library_styles', 'customizer_library_demo_build_styles' ); if ( ! function_exists( 'customizer_library_demo_styles' ) ) : /** * Generates the style tag and CSS needed for the theme options. * * By using the "Customizer_Library_Styles" filter, different components can print CSS in the header. * It is organized this way to ensure there is only one "style" tag. * * @since 1.0.0. * * @return void */ function customizer_library_demo_styles() { do_action( 'customizer_library_styles' ); // Echo the rules $css = Customizer_Library_Styles()->build(); if ( ! empty( $css ) ) { echo "\n\n\n\n"; } } endif; add_action( 'wp_head', 'customizer_library_demo_styles', 11 );