Wordpress Sitemap without plugin
For all of you who've got a Wordpress blog, and if you ever wondered if you could have a site map of all of your posts without plugin. This is a handy script that does it. I prefer not to install plugins if I can manage things in a lighter way, so I'm less updates dependent. Because the thing about using Wordpress is that you should update the Wordpress core and plugins every now and then (too often, to me) This morning I've tested it on my Wordpress web site, and it works like a charm, here is how to do it: Open your template folder Open the page.php and save it as sitemap.php Replace the Replace <?php the_content(); ?> line with the code you see down here: Copy this code inside the sitemap.php file, replace the <?php the_content(); ?> withthe following code snippet: <h3>Pages</h3> <ul><?php wp_list_pages("title_li=" ); ?></ul> <h3>Feeds</h3> <ul> <li><a title="Full conte...