<?php
/**
 * Created by PhpStorm.
 * User: adiardana
 * Date: 13/03/19
 * Time: 17.25
 */


function total_child_enqueue_parent_theme_style() {

    // Load the stylesheet
    wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css', array(), THEMEVERSION );

//    wp_enqueue_style('block-style', THEMEURL.'/assets/css/block.css', array(), THEMEVERSION);
//    wp_enqueue_style('child-style', THEMEURL.'/assets/css/app.css', array(), THEMEVERSION);

    wp_enqueue_style( 'slickcss', '//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css', array(), THEMEVERSION );

    wp_enqueue_script('slickjs', '//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js', array(), THEMEVERSION, true);

    wp_enqueue_script('matchheight', THEMEURL.'/assets/js/jquery.matchHeight.min.js', array('jquery'), THEMEVERSION, true);

    wp_enqueue_script('app', THEMEURL.'/assets/js/app.js', array('jquery'), THEMEVERSION, true);

}
add_action( 'wp_enqueue_scripts', 'total_child_enqueue_parent_theme_style' );

function admin_style(){
    wp_enqueue_style('block-style', THEMEURL.'/assets/css/block.css', array(), THEMEVERSION);
    wp_enqueue_style('admin-style', THEMEURL.'/assets/css/admin.css', array(), THEMEVERSION);
}
add_action('admin_enqueue_scripts', 'admin_style');

//add_action('wp_head', function(){
//    echo '<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">';
//});