Skip to content

Instantly share code, notes, and snippets.

@zachbrowne
Created December 7, 2011 21:56
Show Gist options
  • Save zachbrowne/1444879 to your computer and use it in GitHub Desktop.
Save zachbrowne/1444879 to your computer and use it in GitHub Desktop.
Add Body OnLoad js to WordPress Thesis Theme
<?php
function custom_body_class_event($classes) {
$classes[] .= '" onload="setMoveType();';
return $classes;
}
add_filter('thesis_body_classes', 'custom_body_class_event',99,1);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment