sevenphp / wordpress-themesample-child
A sample wordpress child theme skeleton to show how to implement a child theme with best practice.
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:wordpress-theme
Requires
- composer/installers: ~1.0
This package is auto-updated.
Last update: 2025-03-29 00:30:21 UTC
README
This is to serve as a sample guide when I build child themes.
REF:
STEPS:
-
make sure to append the directory of the child theme with a '-child'
-
Should contain at least the following two files:
- style.css - functions.php
-
The Stylesheet must begin with the header:
/* Theme Name: Parent Name Child Theme URI: [] Description: A Child Theme of [Parent Name] Author: Wasseem Khayrattee Author URI: http://khayrattee.com Template: parent-folder-name # should corresponds to the directory name of the parent theme Version: a-number--optional General comments/License Statement if any. */
- The style.css of a child theme will always directly override its counterpart from the parent
-
The functions.php is necessary to enqueue styles correctly. Do not use @import() in style.css to import parent stylesheet. This is bad practice. So use enqueue.
<?php function my_theme_enqueue_styles() { $parent_style = 'parent-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme. wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); ?>
Overriding things from the Parent functions.php
- The functions.php of a child theme does NOT override its counterpart from the parent
- it is loaded in addition to the parent’s functions.php
- it is loaded in addition to the parent’s functions.php
NOTE:
-
We can capitalise on the above by including a function FIRST in the child-theme so that it overrides its counterpart in the parent-theme, by declaring the function conditionally
if ( ! function_exists( 'theme_special_nav' ) ) { function theme_special_nav() { // Do something. } }
get_stylesheet_directory()
Use this when we need to get the current directory path of the child theme. This is because Wordpress always give the path of the current active theme.
Example:
require_once( get_stylesheet_directory() . '/my_included_file.php' );
Others
For RTL support and localisation, see https://codex.wordpress.org/Child_Themes