This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Theme Name: [Your Theme Name] | |
| Description: The custom theme [Your Theme Name] using the parent theme Twenty Sixteen. | |
| Author: [You] | |
| Author URI: [Your URL] | |
| Template: twentysixteen | |
| Version: 1 | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action( 'wp_enqueue_scripts', 'mychildtheme_enqueue_styles' ); | |
| function mychildtheme_enqueue_styles() { | |
| wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); | |
| } |