Jetpack buttons on 4colums Genesis homepage (addon to http://wpsites.net/web-design/4-column-category-archive-recipes-featured-image-title-only/ )
//* Buttons | |
function kris_jetpack_buttons(){ | |
remove_filter( 'the_content', 'sharing_display', 19 ); | |
remove_filter( 'the_excerpt', 'sharing_display', 19 ); | |
if ( function_exists( 'sharing_display' ) ) { | |
echo sharing_display(); | |
} | |
} | |
add_action( 'genesis_entry_header', 'kris_jetpack_buttons', 12 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment