Last active
December 17, 2015 10:09
-
-
Save JiveDig/5592850 to your computer and use it in GitHub Desktop.
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 content above the sidebar | |
add_action('genesis_before_sidebar_widget_area', 'jivedig_do_before_sidebar'); | |
function jivedig_do_before_sidebar() { | |
echo '<div class="widget">'; | |
echo '<div class="widget-wrap">'; | |
echo '<h4 class="widgettitle">The_Title_Here</h4>'; | |
// Put awesomeness here | |
echo '</div>'; | |
echo '</div>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment