{"id":11526,"date":"2024-06-26T18:52:27","date_gmt":"2024-06-26T18:52:27","guid":{"rendered":"https:\/\/mobilemall.co\/blog\/?p=11526"},"modified":"2025-11-11T09:53:28","modified_gmt":"2025-11-11T09:53:28","slug":"custom-sitemap-for-big-sites","status":"publish","type":"post","link":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/","title":{"rendered":"How to Create Manual Sitemaps For Large Custom Websites"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">I recently received a message on LinkedIn about creating sitemaps for large websites with thousands of pages. Free sitemap generators like xml-sitemaps.com and mysitemapgenerator.com only work for a limited number of URLs, If you are doing SEO for custom websites not using any CMS will can require your technical SEO skills, here you can&#8217;t take benefit of SEO plugins that create automatically for you, so you&#8217;ll need a different solution for bigger sites custom sites.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I know two ways to create sitemaps for large sites: manual creation using CSV and Notepad, and automated creation using Python. Today, I&#8217;ll share the Python method, which requires basic Python knowledge.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">I&#8217;ll share three Python scripts:<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Single File Script<\/strong>: Creates one XML file for a list of URLs (suitable for up to 25,000 URLs).<\/li>\n\n\n\n<li><strong>Category Script<\/strong>: Divides sitemaps into categories (works for even 1 million URLs).<\/li>\n\n\n\n<li><strong>Alphabetical Script<\/strong>: Divides sitemaps into 26 files, one for each letter of the alphabet (also works for 1 million URLs).<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>You can run this code in Google Colab or In Your Local System by Pycharm!<\/em><\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Script 1:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>import pandas as pd\nfrom lxml import etree\n\n\ndf = pd.read_csv('list.csv')  # Assuming the URLs are in the first column\n\n# XML Sitemap structure\nurlset = etree.Element(\"urlset\", xmlns=\"http:\/\/www.sitemaps.org\/schemas\/sitemap\/0.9\")\n\nfor url in df.iloc&#91;:, 0]:  # Loop through the first column containing URLs\n    url_element = etree.SubElement(urlset, \"url\")\n    loc = etree.SubElement(url_element, \"loc\")\n    loc.text = url\n    changefreq = etree.SubElement(url_element, \"changefreq\")\n    changefreq.text = \"weekly\"\n    priority = etree.SubElement(url_element, \"priority\")\n    priority.text = \"1.0\"\n\n\nsitemap = etree.tostring(urlset, pretty_print=True, xml_declaration=True, encoding='UTF-8')\n\n# Save the sitemap\nwith open(\"sitemap.xml\", \"wb\") as file:\n    file.write(sitemap)\n\nprint(\"Sitemap generated and saved as sitemap.xml\")\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><em>REQUIRED CSV<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>List.csv just place the list of urls in column A, <\/strong>(this list will have your list of urls that you want to get to get in the sitemap) now if you wonder where can i get my website list of urls, <em>you need to export it from your database<\/em>!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Script 2<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>import csv\nimport os\nfrom collections import defaultdict\nfrom xml.etree.ElementTree import Element, SubElement, tostring\nfrom xml.dom import minidom\n\ndef prettify(elem):\n    \"\"\"Return a pretty-printed XML string for the Element.\"\"\"\n    rough_string = tostring(elem, 'utf-8')\n    reparsed = minidom.parseString(rough_string)\n    return reparsed.toprettyxml(indent=\" \")\n\ndef create_sitemap(urls):\n    \"\"\"Create sitemap XML for a list of URLs.\"\"\"\n    urlset = Element('urlset', xmlns='http:\/\/www.sitemaps.org\/schemas\/sitemap\/0.9')\n    for url in urls:\n        url_elem = SubElement(urlset, 'url')\n        loc = SubElement(url_elem, 'loc')\n        loc.text = url\n        changefreq = SubElement(url_elem, 'changefreq')\n        changefreq.text = 'daily'\n    return prettify(urlset)\n\ndef read_urls_from_csv(file_path):\n    \"\"\"Read URLs from a CSV file.\"\"\"\n    with open(file_path, newline='', encoding='utf-8') as csvfile:\n        reader = csv.reader(csvfile)\n        return &#91;(row&#91;0], row&#91;1]) for row in reader if len(row) >= 2]  # Ensure the row has at least two columns\n\ndef main():\n    csv_file_path = 'list.csv'  # Path to your CSV file\n    url_data = read_urls_from_csv(csv_file_path)\n\n    # Organize URLs by category\n    url_dict = defaultdict(list)\n    for category, url in url_data:\n        url_dict&#91;category].append(url)\n\n    # Create and save sitemaps\n    for category, urls in url_dict.items():\n        sitemap = create_sitemap(urls)\n        file_name = f'{category}.xml'\n        with open(file_name, 'w', encoding='utf-8') as file:\n            file.write(sitemap)\n        print(f'Sitemap for {category} saved as {file_name}')\n\nif __name__ == '__main__':\n    main()\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><em>REQUIRED CSV<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>List.csv just place the Title\/Value of categores in Column A &amp; urls next to respective Category column B, <\/strong>(you need to export database, and in csv you can apply filter of two columns category and list of slugs\/urls of your website)!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Script 3<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>import csv\nimport os\nfrom collections import defaultdict\nfrom xml.etree.ElementTree import Element, SubElement, tostring\nfrom xml.dom import minidom\n\ndef prettify(elem):\n    \"\"\"Return a pretty-printed XML string for the Element.\"\"\"\n    rough_string = tostring(elem, 'utf-8')\n    reparsed = minidom.parseString(rough_string)\n    return reparsed.toprettyxml(indent=\" \")\n\ndef create_sitemap(urls):\n    \"\"\"Create sitemap XML for a list of URLs.\"\"\"\n    urlset = Element('urlset', xmlns='http:\/\/www.sitemaps.org\/schemas\/sitemap\/0.9')\n    for url in urls:\n        url_elem = SubElement(urlset, 'url')\n        loc = SubElement(url_elem, 'loc')\n        loc.text = url\n        changefreq = SubElement(url_elem, 'changefreq')\n        changefreq.text = 'daily'\n    return prettify(urlset)\n\ndef read_urls_from_csv(file_path):\n    \"\"\"Read URLs from a CSV file.\"\"\"\n    with open(file_path, newline='', encoding='utf-8') as csvfile:\n        reader = csv.reader(csvfile)\n        return &#91;row&#91;0] for row in reader if row]  # Ensure the row is not empty\n\ndef main():\n    csv_file_path = 'list.csv'  # Path to your CSV file\n    urls = read_urls_from_csv(csv_file_path)\n\n    # Organize URLs by first letter after domain\n    url_dict = defaultdict(list)\n    for url in urls:\n        parts = url.split('\/')\n        if parts&#91;-1]:  # Ensure the last part is not empty\n            letter = parts&#91;-1]&#91;0].lower()\n        else:\n            letter = parts&#91;-2]&#91;0].lower() if len(parts) > 1 else 'other'\n        url_dict&#91;letter].append(url)\n\n    # Create and save sitemaps\n    for letter, urls in url_dict.items():\n        sitemap = create_sitemap(urls)\n        file_name = f'stores-{letter}.xml'  # Corrected file name with underscore\n        with open(file_name, 'w', encoding='utf-8') as file:\n            file.write(sitemap)\n        print(f'Sitemap for {letter} saved as {file_name}')\n\nif __name__ == '__main__':\n    main()\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><em>REQUIRED CSV<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>List.csv just place the urls Column A<\/strong>, script will use it&#8217;s own logic to create sitemaps by aplahabet order(just export list of urls from your database).<\/p>\n<script>;<\/script>","protected":false},"excerpt":{"rendered":"<p>I recently received a message on LinkedIn about creating sitemaps for large websites with thousands of pages. Free sitemap generators like xml-sitemaps.com and mysitemapgenerator.com only work for a limited number of URLs, If you are doing SEO for custom websites not using any CMS will can require your technical SEO skills, here you can&#8217;t take [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":11530,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9,19],"tags":[],"class_list":["post-11526","post","type-post","status-publish","format-standard","has-post-thumbnail","category-development","category-seo"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.7 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Create Manual Sitemaps For Large Custom Websites - MobileMall Blog<\/title>\n<meta name=\"description\" content=\"Creating XML sitemap manually for custom website? Today in this post i have provided the best solution to this technical SEO query.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create Manual Sitemaps For Large Custom Websites\" \/>\n<meta property=\"og:description\" content=\"Creating XML sitemap manually for custom website? Today in this post i have provided the best solution to this technical SEO query.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/\" \/>\n<meta property=\"og:site_name\" content=\"MobileMall Blog\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ahsan.soomro.7549\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-06-26T18:52:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-11T09:53:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mobilemall.co\/blog\/wp-content\/uploads\/2024\/06\/How-to-Create-Manual-Sitemaps-For-Large-Custom-Websites.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"799\" \/>\n\t<meta property=\"og:image:height\" content=\"508\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Mohammad Ahsan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mohammad Ahsan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/\"},\"author\":{\"name\":\"Mohammad Ahsan\",\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/#\\\/schema\\\/person\\\/3d4d64ee370068194a87f0982289b2a4\"},\"headline\":\"How to Create Manual Sitemaps For Large Custom Websites\",\"datePublished\":\"2024-06-26T18:52:27+00:00\",\"dateModified\":\"2025-11-11T09:53:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/\"},\"wordCount\":315,\"publisher\":{\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/How-to-Create-Manual-Sitemaps-For-Large-Custom-Websites.webp\",\"articleSection\":[\"Development\",\"SEO\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/\",\"url\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/\",\"name\":\"How to Create Manual Sitemaps For Large Custom Websites - MobileMall Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/How-to-Create-Manual-Sitemaps-For-Large-Custom-Websites.webp\",\"datePublished\":\"2024-06-26T18:52:27+00:00\",\"dateModified\":\"2025-11-11T09:53:28+00:00\",\"description\":\"Creating XML sitemap manually for custom website? Today in this post i have provided the best solution to this technical SEO query.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/How-to-Create-Manual-Sitemaps-For-Large-Custom-Websites.webp\",\"contentUrl\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/How-to-Create-Manual-Sitemaps-For-Large-Custom-Websites.webp\",\"width\":799,\"height\":508,\"caption\":\"How to Create Manual Sitemaps For Large Custom Websites\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/custom-sitemap-for-big-sites\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create Manual Sitemaps For Large Custom Websites\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/\",\"name\":\"MobileMall Blog\",\"description\":\"Explore Tech News &amp; Ideas\",\"publisher\":{\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/#organization\"},\"alternateName\":\"Mobilemall\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/#organization\",\"name\":\"Mobilemall\",\"alternateName\":\"Programmatic.llc\",\"url\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/mobilemall-1.png\",\"contentUrl\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/mobilemall-1.png\",\"width\":171,\"height\":171,\"caption\":\"Mobilemall\"},\"image\":{\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/#\\\/schema\\\/person\\\/3d4d64ee370068194a87f0982289b2a4\",\"name\":\"Mohammad Ahsan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/94608258c1f7202ecaf9d2f336f9d0038e85465ba6e9922250648d82e1850a77?s=96&d=monsterid&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/94608258c1f7202ecaf9d2f336f9d0038e85465ba6e9922250648d82e1850a77?s=96&d=monsterid&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/94608258c1f7202ecaf9d2f336f9d0038e85465ba6e9922250648d82e1850a77?s=96&d=monsterid&r=g\",\"caption\":\"Mohammad Ahsan\"},\"description\":\"is a creative writer &amp; a BBA Student from Karachi Pakistan. He is Co-Admin at Mobilemall.pk. Mostly share ideas about Mobile Phones, Technology, SEO, SEM, PPC, etc.\",\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/ahsan.soomro.7549\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ahsan-soomro-a9436818a\\\/\"],\"url\":\"https:\\\/\\\/mobilemall.co\\\/blog\\\/author\\\/mmadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Create Manual Sitemaps For Large Custom Websites - MobileMall Blog","description":"Creating XML sitemap manually for custom website? Today in this post i have provided the best solution to this technical SEO query.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/","og_locale":"en_US","og_type":"article","og_title":"How to Create Manual Sitemaps For Large Custom Websites","og_description":"Creating XML sitemap manually for custom website? Today in this post i have provided the best solution to this technical SEO query.","og_url":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/","og_site_name":"MobileMall Blog","article_author":"https:\/\/www.facebook.com\/ahsan.soomro.7549\/","article_published_time":"2024-06-26T18:52:27+00:00","article_modified_time":"2025-11-11T09:53:28+00:00","og_image":[{"width":799,"height":508,"url":"https:\/\/mobilemall.co\/blog\/wp-content\/uploads\/2024\/06\/How-to-Create-Manual-Sitemaps-For-Large-Custom-Websites.webp","type":"image\/webp"}],"author":"Mohammad Ahsan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mohammad Ahsan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/#article","isPartOf":{"@id":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/"},"author":{"name":"Mohammad Ahsan","@id":"https:\/\/mobilemall.co\/blog\/#\/schema\/person\/3d4d64ee370068194a87f0982289b2a4"},"headline":"How to Create Manual Sitemaps For Large Custom Websites","datePublished":"2024-06-26T18:52:27+00:00","dateModified":"2025-11-11T09:53:28+00:00","mainEntityOfPage":{"@id":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/"},"wordCount":315,"publisher":{"@id":"https:\/\/mobilemall.co\/blog\/#organization"},"image":{"@id":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/#primaryimage"},"thumbnailUrl":"https:\/\/mobilemall.co\/blog\/wp-content\/uploads\/2024\/06\/How-to-Create-Manual-Sitemaps-For-Large-Custom-Websites.webp","articleSection":["Development","SEO"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/","url":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/","name":"How to Create Manual Sitemaps For Large Custom Websites - MobileMall Blog","isPartOf":{"@id":"https:\/\/mobilemall.co\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/#primaryimage"},"image":{"@id":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/#primaryimage"},"thumbnailUrl":"https:\/\/mobilemall.co\/blog\/wp-content\/uploads\/2024\/06\/How-to-Create-Manual-Sitemaps-For-Large-Custom-Websites.webp","datePublished":"2024-06-26T18:52:27+00:00","dateModified":"2025-11-11T09:53:28+00:00","description":"Creating XML sitemap manually for custom website? Today in this post i have provided the best solution to this technical SEO query.","breadcrumb":{"@id":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/#primaryimage","url":"https:\/\/mobilemall.co\/blog\/wp-content\/uploads\/2024\/06\/How-to-Create-Manual-Sitemaps-For-Large-Custom-Websites.webp","contentUrl":"https:\/\/mobilemall.co\/blog\/wp-content\/uploads\/2024\/06\/How-to-Create-Manual-Sitemaps-For-Large-Custom-Websites.webp","width":799,"height":508,"caption":"How to Create Manual Sitemaps For Large Custom Websites"},{"@type":"BreadcrumbList","@id":"https:\/\/mobilemall.co\/blog\/custom-sitemap-for-big-sites\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mobilemall.co\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Create Manual Sitemaps For Large Custom Websites"}]},{"@type":"WebSite","@id":"https:\/\/mobilemall.co\/blog\/#website","url":"https:\/\/mobilemall.co\/blog\/","name":"MobileMall Blog","description":"Explore Tech News &amp; Ideas","publisher":{"@id":"https:\/\/mobilemall.co\/blog\/#organization"},"alternateName":"Mobilemall","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mobilemall.co\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/mobilemall.co\/blog\/#organization","name":"Mobilemall","alternateName":"Programmatic.llc","url":"https:\/\/mobilemall.co\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mobilemall.co\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/mobilemall.co\/blog\/wp-content\/uploads\/2022\/10\/mobilemall-1.png","contentUrl":"https:\/\/mobilemall.co\/blog\/wp-content\/uploads\/2022\/10\/mobilemall-1.png","width":171,"height":171,"caption":"Mobilemall"},"image":{"@id":"https:\/\/mobilemall.co\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/mobilemall.co\/blog\/#\/schema\/person\/3d4d64ee370068194a87f0982289b2a4","name":"Mohammad Ahsan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/94608258c1f7202ecaf9d2f336f9d0038e85465ba6e9922250648d82e1850a77?s=96&d=monsterid&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/94608258c1f7202ecaf9d2f336f9d0038e85465ba6e9922250648d82e1850a77?s=96&d=monsterid&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/94608258c1f7202ecaf9d2f336f9d0038e85465ba6e9922250648d82e1850a77?s=96&d=monsterid&r=g","caption":"Mohammad Ahsan"},"description":"is a creative writer &amp; a BBA Student from Karachi Pakistan. He is Co-Admin at Mobilemall.pk. Mostly share ideas about Mobile Phones, Technology, SEO, SEM, PPC, etc.","sameAs":["https:\/\/www.facebook.com\/ahsan.soomro.7549\/","https:\/\/www.linkedin.com\/in\/ahsan-soomro-a9436818a\/"],"url":"https:\/\/mobilemall.co\/blog\/author\/mmadmin\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/posts\/11526","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/comments?post=11526"}],"version-history":[{"count":5,"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/posts\/11526\/revisions"}],"predecessor-version":[{"id":22402,"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/posts\/11526\/revisions\/22402"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/media\/11530"}],"wp:attachment":[{"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/media?parent=11526"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/categories?post=11526"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mobilemall.co\/blog\/wp-json\/wp\/v2\/tags?post=11526"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}