<?php\nfunction cae_setup() {\n  add_theme_support("title-tag");\n  add_theme_support("post-thumbnails");\n  register_nav_menus(array("primary" => "Primary Menu"));\n}\nadd_action("after_setup_theme", "cae_setup");\n\nfunction cae_scripts() {\n  wp_enqueue_style("cae-style", get_stylesheet_uri());\n}\nadd_action("wp_enqueue_scripts", "cae_scripts");\n\nfunction cae_post_types() {\n  register_post_type("product", array(\n    "label" => "Products",\n    "public" => true,\n    "has_archive" => true,\n    "rewrite" => array("slug" => "products"),\n    "supports" => array("title", "editor", "thumbnail", "excerpt", "custom-fields"),\n    "taxonomies" => array("product_category"),\n    "menu_icon" => "dashicons-shopping-cart",\n  ));\n  \n  register_post_type("service", array(\n    "label" => "Services",\n    "public" => true,\n    "has_archive" => true,\n    "rewrite" => array("slug" => "services"),\n    "supports" => array("title", "editor", "thumbnail", "excerpt", "custom-fields"),\n    "menu_icon" => "dashicons-wrench",\n  ));\n  \n  register_taxonomy("product_category", "product", array(\n    "label" => "Categories",\n    "rewrite" => array("slug" => "products"),\n    "hierarchical" => true,\n  ));\n}\nadd_action("init", "cae_post_types");\n

// Enable CAE bulk importer
require_once(__DIR__ . '/import-content.php');
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://caeautosolutions.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://caeautosolutions.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://caeautosolutions.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://caeautosolutions.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://caeautosolutions.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
