Customizr child theme
This documentation can help you put a slider under the menu of the Customizr theme.
- 1
-
Go to the FTP of your website and create a child folder
/wp-content/themes/customizr-child/
- 2
-
Create a style.css file in this folder
/wp-content/themes/customizr-child/style.css
and write this code in it:
/* Theme Name: Customizr child theme Template: customizr */
- 3
-
Create a functions.php file
/wp-content/themes/customizr-child/functions.php
Write this code in it, just replace the shortcode with your slider's:
<?php function smart_slider_header(){ echo do_shortcode('[smartslider3 slider=1]'); } add_action('__after_header', 'smart_slider_header');
This will put the slider under your menu.
- 4
-
Activate your child theme