Lego2012
12/13/2016 - 9:14 AM

Header - Stylesheet To CDN

Header - Stylesheet To CDN

<?php
// Do NOT include the opening php tag

remove_action( 'genesis_meta', 'genesis_load_stylesheet' );
add_action( 'genesis_meta', 'child_stylesheet_cdn' );
/**
 * Change the location of the stylesheet reference.
 *
 * @author Greg Rickaby
 * @since 1.0.0
 */
function child_stylesheet_cdn() {

	echo '<link rel="stylesheet" href="http://cdn.yourdomain.com/wp-content/themes/child/style.css" type="text/css" media="screen" />'."\n";

}