Last active
December 15, 2015 00:39
-
-
Save braddalton/5174654 to your computer and use it in GitHub Desktop.
Upload an image to your WordPress media library and change the image url in this code. Paste the code at the end of your child themes functions.php file. Change the hook depending on your themes specific hooks.
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
add_action('genesis_before_sidebar_widget_area', 'wpsites_banner_function'); | |
function wpsites_banner_function() { | |
echo '<div class="widget-logo"><img src="http://yourdomain.com/wp-content/uploads/2013/03/image.png" alt="widget logo" /></div>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment