first commit

This commit is contained in:
2024-07-31 13:12:38 +07:00
commit b4e8cbe182
10213 changed files with 3125839 additions and 0 deletions

View 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' );

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 KiB

View 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
*/