Skip to content

Instantly share code, notes, and snippets.

@dustyf
Created March 9, 2014 04:50
Show Gist options
  • Save dustyf/9443049 to your computer and use it in GitHub Desktop.
Save dustyf/9443049 to your computer and use it in GitHub Desktop.
Comic Sans Roulette
function comic_sans_roulette() {
$random = mt_rand( 0, 9 );
if ( $random == 0 ) {
echo '<style>* { font-family: "Comic Sans MS" !important; }</style>';
}
}
add_action( 'wp_head', 'comic_sans_roulette' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment