Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created March 8, 2018 20:04
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/349b463d53fc0459b304d30c7034f44e to your computer and use it in GitHub Desktop.
Save billerickson/349b463d53fc0459b304d30c7034f44e to your computer and use it in GitHub Desktop.
<?php
/**
* Display Like Button
*
*/
function ea_display_like_button() {
if( is_single() && function_exists( 'be_like_content' ) )
be_like_content()->display();
}
add_action( 'genesis_entry_content', 'ea_display_like_button', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment