Created
September 27, 2012 16:52
-
-
Save scottnix/3795084 to your computer and use it in GitHub Desktop.
Add MM_Preload Dreamweaver to Thematic body class
This file contains 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
// add dreamweaver preloadimages attributes to body tag | |
// http://thematictheme.com/forums/topic/add-onload-to-body-on-homepage-only/ | |
function childtheme_override_body() { | |
echo '<body '; | |
echo 'onload="MM_preloadImages(\'images/home_over_button.jpg\')" '; | |
body_class(); | |
echo '>' . "\n\n"; | |
} | |
// |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment