first commit
This commit is contained in:
20
wp-content/themes/thinkai-child/functions.php
Normal file
20
wp-content/themes/thinkai-child/functions.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* Theme functions and definitions.
|
||||
*/
|
||||
function thinkai_child_enqueue_styles() {
|
||||
|
||||
if ( SCRIPT_DEBUG ) {
|
||||
wp_enqueue_style( 'thinkai-style' , get_template_directory_uri() . '/style.css' );
|
||||
} else {
|
||||
wp_enqueue_style( 'thinkai-minified-style' , get_template_directory_uri() . '/style.css' );
|
||||
}
|
||||
|
||||
wp_enqueue_style( 'thinkai-child-style',
|
||||
get_stylesheet_directory_uri() . '/style.css',
|
||||
array( 'thinkai-style' ),
|
||||
wp_get_theme()->get('Version')
|
||||
);
|
||||
}
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'thinkai_child_enqueue_styles' );
|
||||
BIN
wp-content/themes/thinkai-child/screenshot.png
Normal file
BIN
wp-content/themes/thinkai-child/screenshot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 293 KiB |
7
wp-content/themes/thinkai-child/style.css
Normal file
7
wp-content/themes/thinkai-child/style.css
Normal file
@@ -0,0 +1,7 @@
|
||||
/**
|
||||
* Theme Name: Thinkai Child
|
||||
* Description: This is a child theme of Thinkai, generated by Merlin WP.
|
||||
* Author: <a href="http://themeforest.net/user/themekalia">Theme Kalia</a>
|
||||
* Template: thinkai
|
||||
* Version: 1.0
|
||||
*/
|
||||
Reference in New Issue
Block a user