Basic WordPress Child Theme Download
Parent theme dependency
For the Basic Parent WordPress Theme by Elegant Themes visit the Demo page.
Basic-child/style.css
/*
Theme Name: Basic Child
Template: Basic
*/
Basic-child/functions.php
<?php
add_action('wp_enqueue_scripts', 'wp_child_theme');
function wp_child_theme()
{
wp_enqueue_style('parent-stylesheet', './Basic/style.css');
wp_enqueue_style('child-stylesheet', './Basic-child/style.css');
wp_enqueue_script('child-scripts', './Basic-child/js/view.js', array('jquery'), '6.1.1', true);
}
?>
Basic-child/screenshot.png (1200px x 900px)
<img src="./screenshot.png" alt="Basic child theme screenshot">
Basic-child/js/scripts.js
Build information
functions.php |
style.css |
screenshot.png |
[dir] js/ |
» scripts.js |
Folder Structure
Parent * | Basic/ |
Child ** | Basic-child/ |
* Required theme for this child theme to work ** This child theme (download) |
---|