Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created February 24, 2014 23:03
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 kraftbj/9199140 to your computer and use it in GitHub Desktop.
Save kraftbj/9199140 to your computer and use it in GitHub Desktop.
Re-add sharing buttons under post content
function sp_share_buttons_below_post( $post_meta ) {
if ( is_single() ) {
return sharing_display().$post_meta;
}
}
add_filter( 'genesis_post_meta', 'sp_share_buttons_below_post', 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment