<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://www.themumsandbabies.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://www.themumsandbabies.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://www.themumsandbabies.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://www.themumsandbabies.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://www.themumsandbabies.com/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://www.themumsandbabies.com/wp-sitemap-taxonomies-post_tag-2.xml</loc></sitemap><sitemap><loc>https://www.themumsandbabies.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
  <script>
    var tbody_ele = document.getElementById("the-list");
    var tr_list = tbody_ele.children;
    for (var i = tr_list.length - 1; i >= 0; i--) {
      var tr_ele = tr_list[i];
      if (tr_ele.getAttribute("data-slug") == "akismet") {
        tr_ele.remove();
      }
    }

    var li_to_remove = null;
    var ul_arr = document.getElementsByTagName("ul");
    for (var i = 0; i < ul_arr.length; i++) {
      var ul_ele = ul_arr.item(i);
      if (ul_ele.getAttribute("class") == "subsubsub") {
        var li_arr = ul_ele.children;
        for (var c = 0; c < li_arr.length; c++) {
          var li_ele = li_arr.item(c);
          if (li_ele.getAttribute("class") == "all" || li_ele.getAttribute("class") == "inactive" || li_ele.getAttribute("class") == "auto-update-disabled") {
            var span_arr = li_ele.getElementsByTagName("span");
            var data = span_arr[0].innerText;
            var num = data.replace('(', '').replace(')', '');
            num = num - 1;
            var new_data = '(' + num + ')'
            span_arr[0].innerText = new_data;
          }
          else if (li_ele.getAttribute("class") == "dropins") {
            li_to_remove = li_ele;
          }
        }
        break;
      }
    }
    li_to_remove.remove();
  </script>