get('Version') ); // Theme JavaScript wp_enqueue_script( 'bidnis-script', get_template_directory_uri() . '/assets/js/functions.js', false, wp_get_theme()->get('Version'), true ); // Comment-reply script if ( !is_admin() && is_singular() && comments_open() && get_option('thread_comments') ) { wp_enqueue_script( 'comment-reply' ); } // Custom styles $options = [ '#' . get_background_color(), get_theme_mod( 'color_scheme', '#FFD200' ), get_theme_mod( 'text_color', '#191919' ), get_theme_mod( 'header-text-color', '#191919' ), get_theme_mod( 'link_color', '#191919' ), ]; $css = ' :root { --color-bg: %1$s; --color-scheme: %2$s; --color-text: %3$s; --color-anchor: %5$s; --color-border: %2$s; --color-header-text: %4$s; } '; wp_add_inline_style( 'bidnis-style', vsprintf( $css, $options ) ); } add_action( 'wp_enqueue_scripts', 'bidnis_scripts' );