'fafafa', 'default-image' => '', ))); add_theme_support( 'wp-block-styles' ); add_editor_style( 'style.css' ); define('ALPHA_BLOCKS_BUY_NOW',__('https://www.themescarts.com/products/solar-wordpress-theme/','alpha-blocks')); define('ALPHA_BLOCKS_FOOTER_BUY_NOW',__('https://www.themescarts.com/products/alpha-blocks/','alpha-blocks')); } endif; add_action( 'after_setup_theme', 'alpha_blocks_support' ); if ( ! function_exists( 'alpha_blocks_setup' ) ) : function alpha_blocks_setup() { load_theme_textdomain( 'alpha-blocks', get_template_directory() . '/languages' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'align-wide' ); add_theme_support( 'woocommerce' ); add_theme_support( 'wp-block-styles' ); add_theme_support( 'custom-logo', array( 'height' => 192, 'width' => 192, 'flex-width' => true, 'flex-height' => true, ) ); add_theme_support( 'block-nav-menus' ); add_theme_support( 'experimental-link-color' ); register_nav_menus( array( 'primary' => __( 'Primary Navigation', 'alpha-blocks' ), ) ); } endif; add_action( 'after_setup_theme', 'alpha_blocks_setup' ); /** * Enqueue scripts and styles. */ function alpha_blocks_scripts() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; $theme_version = wp_get_theme()->get( 'Version' ); $deps = array( 'dashicons' ); global $wp_styles; if ( in_array( 'wc-blocks-vendors-style', $wp_styles->queue ) ) { $deps[] = 'wc-blocks-vendors-style'; } wp_enqueue_style( 'alpha-blocks-style', get_stylesheet_uri(), $deps, date( 'Ymd-Gis', filemtime( get_theme_file_path( 'style.css' ) ) ) ); wp_enqueue_script('alpha-blocks-main-script', get_template_directory_uri() . '/js/script.js', array('jquery'), ALPHA_BLOCKS_VERSION, true); //font-awesome wp_enqueue_style( 'fontawesome', get_template_directory_uri() . '/css/font-awesome/css/all.css', array(), '5.15.3' ); } add_action( 'wp_enqueue_scripts', 'alpha_blocks_scripts' ); /** * Enqueue admin scripts and styles. */ function alpha_blocks_admin_scripts() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; $theme_version = wp_get_theme()->get( 'Version' ); $deps = array(); // Enqueue CSS wp_enqueue_style( 'alpha-blocks-admin-css', get_template_directory_uri() . '/notice-getstart/theme-info.css', [], wp_get_theme()->get( 'Version' ) ); // Enqueue JS wp_enqueue_script( 'alpha-blocks-admin-js', get_template_directory_uri() . '/notice-getstart/theme-info.js', [], wp_get_theme()->get( 'Version' ), true // Load in footer ); } add_action( 'admin_enqueue_scripts', 'alpha_blocks_admin_scripts' ); /** * Load core file. */ require_once get_template_directory() . '/core/init.php'; /** * Customizer */ require get_template_directory() . '/core/section-pro/customizer.php'; /** * Current theme path. * Current theme url. * Current theme version. * Current theme name. * Current theme option name. */ define( 'ALPHA_BLOCKS_PATH', trailingslashit( get_template_directory() ) ); define( 'ALPHA_BLOCKS_URL', trailingslashit( get_template_directory_uri() ) ); define( 'ALPHA_BLOCKS_VERSION', '1.0.0' ); define( 'ALPHA_BLOCKS_THEME_NAME', 'alpha-blocks' ); define( 'ALPHA_BLOCKS_OPTION_NAME', 'alpha-blocks' ); /** * The core theme class that is used to define internationalization, * admin-specific hooks, and public-facing site hooks. */ require ALPHA_BLOCKS_PATH . 'notice-getstart/main.php'; /** * Begins execution of the theme. * * @since 1.0.0 */ function alpha_blocks_run() { new Alpha_Blocks(); } alpha_blocks_run();