get( 'Version' ); // Stylesheet wp_enqueue_style( 'blockskit-styles', get_theme_file_uri( '/style.css' ), array(), $version ); wp_enqueue_style( 'blockskit-animate', get_template_directory_uri() . '/assets/css/animate.css', array(), $version, 'all' ); if ( file_exists( get_template_directory() . '/assets/css/theme-style.css' ) ) { wp_enqueue_style( 'blockskit-theme-style', get_template_directory_uri() . '/assets/css/theme-style.css', array(), $version ); } $deps = array( 'blockskit-animate' ); global $wp_styles; if ( in_array( 'wc-blocks-vendors-style', $wp_styles->queue ) ) { $deps[] = 'wc-blocks-vendors-style'; } if (is_rtl()) { wp_enqueue_style( 'rtl-css', get_template_directory_uri() . '/assets/css/rtl.css', 'rtl_css' ); } // Scripts $deps = array( 'jquery' ); wp_enqueue_script( 'blockskit-animate', get_template_directory_uri() . '/assets/js/animate.min.js', $deps, $version ); } add_action( 'wp_enqueue_scripts', 'blockskit_scripts' ); /** * Add editor styles */ function blockskit_editor_style() { wp_enqueue_style( 'blockskit-editor-style', get_template_directory_uri() . '/assets/css/editor-style.css', array(), '1.0' ); } add_action( 'enqueue_block_editor_assets', 'blockskit_editor_style' ); /** * Enqueue assets scripts for both backend and frontend */ function blockskit_block_assets() { wp_enqueue_style( 'blockskit-blocks-style', get_template_directory_uri() . '/assets/css/blocks.css' ); } add_action( 'enqueue_block_assets', 'blockskit_block_assets' ); /** * Load core file */ require get_theme_file_path() . '/inc/core/init.php'; /** * Theme info */ require get_theme_file_path( '/inc/theme-info/theme-info.php' ); /** * Getting started notification */ require get_theme_file_path( '/inc/getting-started/getting-started.php' ); /** * Skips redirection after Elementor plugin activation */ add_action( 'admin_init', function() { if ( did_action( 'elementor/loaded' ) ) { remove_action( 'admin_init', [ \Elementor\Plugin::$instance->admin, 'maybe_redirect_to_getting_started' ] ); } }, 1 ); /** * Skips redirection after Spectra plugin activation */ add_filter( 'uagb_enable_redirect_activation', 'blockskit_disable_spectra_redirection' ); function blockskit_disable_spectra_redirection(){ return false; } /** * Skips redirection after WooCommerce plugin activation */ add_filter( 'woocommerce_enable_setup_wizard', '__return_false' );