
/**
 * Setup auntri Child Theme's textdomain.
 *
 * Declare textdomain for this child theme.
 * Translations can be filed in the /languages/ directory.
 */
function auntri_child_theme_setup() {
	load_child_theme_textdomain( 'auntri-child', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'auntri_child_theme_setup' );


add_action( 'wp_enqueue_scripts', 'auntri_enqueue_styles' );
function auntri_enqueue_styles() {
    $parenthandle = 'auntri-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
    $theme = wp_get_theme();
    wp_enqueue_style( $parenthandle, get_template_directory_uri() . '/style.css', 
        array(),  // if the parent theme code has a dependency, copy it to here
        $theme->parent()->get('Version')
    );
    wp_enqueue_style( 'child-style', get_stylesheet_uri(),
        array( $parenthandle ),
        $theme->get('Version') // this only works if you have Version in the style header
    );
}<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://stepmedialtd.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://stepmedialtd.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://stepmedialtd.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://stepmedialtd.com/wp-sitemap-posts-ova_framework_hf_el-1.xml</loc></sitemap><sitemap><loc>https://stepmedialtd.com/wp-sitemap-posts-ova_projects-1.xml</loc></sitemap><sitemap><loc>https://stepmedialtd.com/wp-sitemap-posts-ova_sev-1.xml</loc></sitemap><sitemap><loc>https://stepmedialtd.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://stepmedialtd.com/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://stepmedialtd.com/wp-sitemap-taxonomies-category_project-1.xml</loc></sitemap><sitemap><loc>https://stepmedialtd.com/wp-sitemap-taxonomies-cat_sev-1.xml</loc></sitemap><sitemap><loc>https://stepmedialtd.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
