Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Last active December 17, 2015 10:09
Show Gist options
  • Save JiveDig/5592850 to your computer and use it in GitHub Desktop.
Save JiveDig/5592850 to your computer and use it in GitHub Desktop.
// 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