'primary', 'name' => esc_html_x( 'Primary', 'sidebar', 'airy' ), 'description' => esc_html__( 'After content.', 'airy' ) ) ); } /** * Load scripts for the front end. * */ function airy_enqueue_scripts() { /* main scripts file */ wp_enqueue_script( 'theme-scripts', get_template_directory_uri() . '/js/theme-scripts.js', array( 'jquery' ), null, true ); } /** * Load stylesheets for the front end. * */ function airy_enqueue_styles() { // Load parent theme stylesheet if child theme is active. if ( is_child_theme() ) wp_enqueue_style( 'hybrid-parent' ); // Load active theme stylesheet. wp_enqueue_style( 'hybrid-style' ); }