/*
Theme Name: In Conference Child
Theme URI: http://cmsmasters.net/in-conference-child/
Author: cmsmasters
Author URI: http://cmsmasters.net/
Description: In Conference Child Theme
Template: in-conference
Version: 1.0.0
License:
License URI:
Text Domain: in-conference-child
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
*/

<?php
function my_theme_enqueue_styles() {

    $parent_style = 'in-conference'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.

    wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'in-conference-child',
        get_stylesheet_directory_uri() . '/style.css',
        array( $parent_style ),
        wp_get_theme()->get('Version')
    );
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>