Last active
September 16, 2017 00:09
-
-
Save pablocattaneo/56acb872a1d6b277c82b to your computer and use it in GitHub Desktop.
Uncss for Wordpress
Generate a JSON list of every page on a site so it can be used with grunt and uncss. Create a folder in /wp-content called mu-plugins, and drop this code into that folder, as grunt-sitemap.php
After thatrun http://yourdomain.com?show_sitemap to get all url of your site an then paste it here:
//Uncss task
gulp.task('uncss', fu…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Grunt Sitemap Generator | |
* Plugin URI: http://www.github.com/lgladdy | |
* Description: Generate a JSON list of every page on a site so it can be used with grunt and uncss. Create a folder in /wp-content called mu-plugins, and drop this code into that folder, as grunt-sitemap.php | |
* Author: Liam Gladdy | |
* Author URI: http://gladdy.co.uk | |
* Version: 1.0 | |
*/ | |
add_action('template_redirect','show_sitemap'); | |
function show_sitemap() { | |
if (isset($_GET['show_sitemap'])) { | |
$the_query = new WP_Query(array('post_type' => 'any', 'posts_per_page' => '-1', 'post_status' => 'publish')); | |
$urls = array(); | |
while ($the_query->have_posts()) { | |
$the_query->the_post(); | |
$urls[] = get_permalink(); | |
} | |
die(json_encode($urls)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment