Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 15, 2015 00:39
Show Gist options
  • Save braddalton/5174654 to your computer and use it in GitHub Desktop.
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.
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