add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' ); function enqueue_parent_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); } ?> // Framework functions require_once( get_template_directory() . '/framework/get-mods.php' ); require_once( get_template_directory() . '/framework/framework-functions.php' ); require_once( get_template_directory() . '/framework/sanitize-data.php' ); require_once( get_template_directory() . '/framework/fonts.php' ); require_once( get_template_directory() . '/framework/typography.php' ); require_once( get_template_directory() . '/framework/accent-color.php' ); require_once( get_template_directory() . '/framework/customizer/customizer.php' ); require_once( get_template_directory() . '/framework/metabox-options.php' ); require_once( get_template_directory() . '/framework/widget-areas.php' ); require_once( get_template_directory() . '/framework/breadcrumbs.php' ); require_once( get_template_directory() . '/framework/plugins.php' ); require_once( get_template_directory() . '/framework/theme-woocommerce.php' ); require_once( get_template_directory() . '/framework/demo-install.php' ); // Visual Composer if ( class_exists( 'Vc_Manager' ) ) { require_once( get_template_directory() . '/framework/visual-composer-config.php' ); require_once( get_template_directory() . '/framework/visual-composer-custom-row.php' ); } // Sets up theme defaults and registers support for various WordPress features. add_action( 'after_setup_theme', 'ambersix_theme_setup' ); function ambersix_theme_setup() { // Make theme available for translation. load_theme_textdomain( 'ambersix', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); // Let WordPress manage the document title. add_theme_support( 'title-tag' ); // Enable woocommerce support add_theme_support( 'woocommerce' ); // Enable support for Post Thumbnails on posts and pages. add_theme_support( 'post-thumbnails' ); add_image_size( 'ambersix-post-standard', 770, 450, true ); add_image_size( 'ambersix-post-related', 480, 324, true ); add_image_size( 'ambersix-post-widget', 140, 140, true ); // Register menus register_nav_menu( 'top', esc_html__( 'Top Menu', 'ambersix' ) ); register_nav_menu( 'primary', esc_html__( 'Primary Menu', 'ambersix' ) ); register_nav_menu( 'onepage', esc_html__( 'OnePage Menu', 'ambersix' ) ); // Switch default core markup for search form, comment form, and comments to output valid HTML5. add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Enable support for Post Formats. add_theme_support( 'post-formats', array( 'image', 'gallery', 'video' ) ); // Add Excerpts to Pages add_post_type_support( 'page', 'excerpt' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, and column width. */ add_editor_style( array( 'assets/css/editor-style.css' ) ); } // Enqueues scripts and styles. add_action( 'wp_enqueue_scripts', 'ambersix_theme_scripts' ); function ambersix_theme_scripts() { // Vendor Styles & Icons wp_enqueue_style( 'animate', get_template_directory_uri() . '/assets/css/animate.css', array(), '3.5.2' ); wp_enqueue_style( 'animsition', get_template_directory_uri() . '/assets/css/animsition.css', array(), '4.0.1' ); wp_enqueue_style( 'slick', get_template_directory_uri() . '/assets/css/slick.css', array(), '1.6.0' ); wp_enqueue_style( 'eleganticons', get_template_directory_uri() . '/assets/css/eleganticons.css', array(), '1.0.0' ); wp_enqueue_style( 'pe-icon-7-stroke', get_template_directory_uri() . '/assets/css/pe-icon-7-stroke.css', array(), '1.0.0' ); wp_enqueue_style( 'fontawesome', get_template_directory_uri() . '/assets/css/fontawesome.css', array(), '4.7.0' ); wp_enqueue_style( 'lineaicons', get_template_directory_uri() . '/assets/css/lineaicons.css', array(), '1.0.0' ); // Theme Fonts & Style wp_enqueue_style( 'ambersix-theme-fonts', get_template_directory_uri() . '/assets/css/theme-fonts.css', array(), '1.0.0' ); wp_enqueue_style( 'ambersix-theme-style', get_stylesheet_uri(), array(), '1.0.0' ); // Vendor Scripts wp_enqueue_script( 'html5shiv', get_template_directory_uri() . '/assets/js/html5shiv.js', array('jquery'), '3.7.3', true ); wp_enqueue_script( 'respond', get_template_directory_uri() . '/assets/js/respond.js', array('jquery'), '1.3.0', true ); wp_enqueue_script( 'matchmedia', get_template_directory_uri() . '/assets/js/matchmedia.js', array('jquery'), '1.0.0', true ); wp_enqueue_script( 'easing', get_template_directory_uri() . '/assets/js/easing.js', array('jquery'), '1.3.0', true ); wp_enqueue_script( 'fitvids', get_template_directory_uri() . '/assets/js/fitvids.js', array('jquery'), '1.1.0', true ); wp_enqueue_script( 'animsition', get_template_directory_uri() . '/assets/js/animsition.js', array('jquery'), '4.0.1', true ); wp_register_script( 'slick', get_template_directory_uri() . '/assets/js/slick.js', array('jquery'), '1.6.0', true ); // Theme Script wp_enqueue_script( 'ambersix-theme-script', get_template_directory_uri() . '/assets/js/main.js', array( 'jquery' ), '1.0.0', true ); // Comment JS if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); } // Output custom CSS from Customizer add_action( 'wp_enqueue_scripts', 'ambersix_output_custom_color' ); function ambersix_output_custom_color( $output = NULL ) { $output = apply_filters( 'ambersix_custom_colors_css', $output ); wp_add_inline_style( 'ambersix-theme-style', $output ); } // Registers a widget area. add_action( 'widgets_init', 'ambersix_sidebars_init' ); function ambersix_sidebars_init() { // Sidebar for Blog register_sidebar( array( 'name' => esc_html__( 'Sidebar Blog', 'ambersix' ), 'id' => 'sidebar-blog', 'description' => esc_html__( 'Add widgets here to appear in Sidebar Blog.', 'ambersix' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' ) ); // Sidebar for Pages register_sidebar( array( 'name' => esc_html__( 'Sidebar Page', 'ambersix' ), 'id' => 'sidebar-page', 'description' => esc_html__( 'Add widgets here to appear in Sidebar Page', 'ambersix' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' ) ); // Sidebar for Portfolio register_sidebar( array( 'name' => esc_html__( 'Sidebar Portfolio', 'ambersix' ), 'id' => 'sidebar-portfolio', 'description' => esc_html__( 'Add widgets here to appear in Sidebar Portfolio', 'ambersix' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' ) ); // Sidebar for Shop register_sidebar( array( 'name' => esc_html__( 'Sidebar Shop', 'ambersix' ), 'id' => 'sidebar-shop', 'description' => esc_html__( 'Add widgets here to appear in Sidebar Shop', 'ambersix' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' ) ); // 4 Sidebars for Footer register_sidebar( array( 'name' => esc_html__( 'Sidebar Footer 1', 'ambersix' ), 'id' => 'sidebar-footer-1', 'description' => esc_html__( 'Add widgets here to appear in Sidebar Footer 1', 'ambersix' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' ) ); register_sidebar( array( 'name' => esc_html__( 'Sidebar Footer 2', 'ambersix' ), 'id' => 'sidebar-footer-2', 'description' => esc_html__( 'Add widgets here to appear in Sidebar Footer 2', 'ambersix' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' ) ); register_sidebar( array( 'name' => esc_html__( 'Sidebar Footer 3', 'ambersix' ), 'id' => 'sidebar-footer-3', 'description' => esc_html__( 'Add widgets here to appear in Sidebar Footer 3', 'ambersix' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' ) ); register_sidebar( array( 'name' => esc_html__( 'Sidebar Footer 4', 'ambersix' ), 'id' => 'sidebar-footer-4', 'description' => esc_html__( 'Add widgets here to appear in Sidebar Footer 4', 'ambersix' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' ) ); } // Disable WPBakery front end editor. if(function_exists('vc_disable_frontend')){ vc_disable_frontend(); } // Disable gutenberg on widgets function ambersix_theme_support() { remove_theme_support( 'widgets-block-editor' ); } add_action( 'after_setup_theme', 'ambersix_theme_support' ); Web Gatherings https://validator.w3.org/feed/docs/rss2.html Find wealthy senior love: explore top dating sites for wealthy seniors Find love regarding best blacks dating site What is a millionaire woman? Discover the easiest way to meet singles within area How to Style Spider Hoodies for Various Occasions Uncover an ideal latin girl for you My personal Report about Granny gender Personals App and internet site SP5DER – Automate Your Home, Save Time Up to 40% Off Blog Home Hook up with local women instantly Player Girl Dating: how to like and Play at any given time How Sp5der Clothing Incorporates Urban Culture into Fashion Trends 7 Things New York Offers Taught Us Regarding Love Find bi women near you now 17 Proven Ways To Meet & Date Cougars In Nashville in 2023 Find a night out together and work out lasting connections with gay craigslist georgia Find the right ssbbw hook up Get connected with like-minded bbw hookup partners things to look out for in a gay personal site Tips for conference and connecting with bisexual singles Find your perfect bi hookup match now Regional Ebony Milfs Evaluation: Performs This Interracial Dating Website In Fact Work? Finest Places Meet Up With Babes In Ulaanbaatar & Dating Guide – WorldDatingGuides TOP 20: Most Readily Useful Sex Toys For Gay Men (2021) | LUSTFEL Discover the advantages of mature gay dating A beginner’s guide to the very best porno games: What You Should perform and what you need to know | It’s time and energy to meet your match: women seeking men in lexington Meet sexy black milfs for enjoyable and exciting dates Find local dates near you Enjoy fun and exciting hookups with local gay singles inside area Make many of your dating life with apps to meet older women Where to find pregnant singles who are selecting love Find true love with married men looking for women now What features in case you look for in a site for bisexual hookups? Meet appropriate singles in our protected online community Find your perfect sugar baby with your sugar baby search Top-notch Singles product reviews (2022) – Your trial offer Here – Cost & Join Start chatting now in order to find your soulmate in our online adult chat room Join top crossdresser chat room and commence connecting now Enjoy steamy, exciting, and flirty conversations with asian singles Find your perfect bbw les com match today Find your perfect match: women seeking couple 6 Fun Online Dating Sites Visibility Templates You Should Use Older Girl Little Guy Sites For Adult Fun And Essential Dating Sleeping Around # 1: “Precisely Why I’m Easy” | Autostraddle Enjoy a night out with an attractive black milf within area Salt Daddy (2023) – Just who he or she is & why you need to Avoid Him Enjoy Uae Glucose Appreciation With A Rich Glucose Mummy In Abu Dhabi Get many from your internet dating experience