Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created October 14, 2013 14:31
Show Gist options
  • Save RhythmShahriar/6976590 to your computer and use it in GitHub Desktop.
Save RhythmShahriar/6976590 to your computer and use it in GitHub Desktop.
<?php
/**-------------------------------------------
* @package Code Snippets
* @link http://rhythmshahriar.com/code/
* @author Rhythm <[email protected]>
* @copyright Copyright (c) 2013, Rhythm Shahriar
-------------------------------------------------*/
remove_action( 'genesis_meta', 'genesis_load_stylesheet' );
add_action( 'genesis_meta', 'rs_child_stylesheet_cdn' );
function rs_child_stylesheet_cdn() {
echo '<link rel="stylesheet" href="http://cdn.yourdomain.com/themes/child/style.css" type="text/css" media="screen" />'."\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment