Last active 1563914748

Generates a sitemap.xml from Wordpress

wp-sitemap.php Raw
1<?php
2include( './wp-load.php' );
3header("Content-Type: application/xml");
4?>
5<?xml version="1.0" encoding="UTF-8"?>
6<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <?php
7foreach(get_pages() as $page) { ?>
8 <url>
9 <loc><?php echo get_page_link( $page->ID ); ?></loc>
10 <lastmod><?php echo date("Y-m-d", strtotime($page->post_modified)); ?></lastmod>
11 </url>
12<?php } ?>
13</urlset>