Created
December 7, 2011 21:56
-
-
Save zachbrowne/1444879 to your computer and use it in GitHub Desktop.
Add Body OnLoad js to WordPress Thesis Theme
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 | |
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