Homepage: how to add Revolution Slider to child theme?
-
Newbie: Can someone please help me with adding slider revolution to my wp-education child theme. Below is the code from my child functions.php
<?php
// Exit if accessed directly
if ( !defined( ‘ABSPATH’ ) ) exit;// BEGIN ENQUEUE PARENT ACTION
// AUTO GENERATED – Do not modify or remove comment markers above or below:if ( !function_exists( ‘child_theme_configurator_css’ ) ):
function child_theme_configurator_css() {
wp_enqueue_style( ‘chld_thm_cfg_child’, trailingslashit( get_stylesheet_directory_uri() ) . ‘style.css’, array( ‘grid-text’,’grid-reset’,’grid-960′,’wpe-style’,’wpe-style’,’flexslider’,’superfish’,’lightbox’,’jquery-ui’,’preset-css’,’responsive’ ) );
}
endif;
add_action( ‘wp_enqueue_scripts’, ‘child_theme_configurator_css’ );// END ENQUEUE PARENT ACTION
- The topic ‘Homepage: how to add Revolution Slider to child theme?’ is closed to new replies.