Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 20, 2015 02:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/6055355 to your computer and use it in GitHub Desktop.
Save braddalton/6055355 to your computer and use it in GitHub Desktop.
add_action( 'genesis_before_content_sidebar_wrap', 'wpsites_widget', 5 );
function wpsites_widget() {
if ( is_page() && is_active_sidebar( 'custom-widget' ) ) {
echo '<div class="widget">';
dynamic_sidebar( 'custom-widget' );
echo '</div><!-- end .custom-widget -->';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment