Skip to content

Instantly share code, notes, and snippets.

Created June 12, 2014 06:54
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 anonymous/a4d4bd1517acf21e06c0 to your computer and use it in GitHub Desktop.
Save anonymous/a4d4bd1517acf21e06c0 to your computer and use it in GitHub Desktop.
add_action( 'genesis_entry_content', 'wpsites_after_post_widget', 14 );
function wpsites_after_post_widget() {
if ( is_single() ) {
genesis_widget_area( 'after-post', array(
'before' => '<div class="after-post" class="widget-area">',
'after' => '</div>',
) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment