Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created September 14, 2016 17:18
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 billerickson/3de9942ede75c72c6aee0e48796c123d to your computer and use it in GitHub Desktop.
Save billerickson/3de9942ede75c72c6aee0e48796c123d to your computer and use it in GitHub Desktop.
<?php
/**
* Share Buttons on Archive Pages
*
*/
function be_share_buttons_on_archive() {
if( is_home() || is_archive() || is_search() ) {
ea_share()->front->display();
}
}
add_action( 'genesis_entry_content', 'be_share_buttons_on_archive', 12 );
@IkeTen
Copy link

IkeTen commented Sep 14, 2016

Thanks Bill.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment