File: /www/wwwroot/bientansht.com/wp-content/themes/k-tech/functions.php
<?php
include_once 'admin/admin-template.php';
add_action('wp_enqueue_scripts', 'k_tech_style');
function k_tech_style() {
// 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'));
}
if ( ! function_exists( 'ktech_text_editor' ) ) {
function ktech_text_editor( $initArray ){
$initArray['fontsize_formats'] = "8px 10px 12px 14px 16px 18px 20px 24px 28px 32px 36px 48px 60px 72px 96px";
return $initArray;
}
}
add_filter( 'tiny_mce_before_init', 'ktech_text_editor', 99);