Skip to content

Instantly share code, notes, and snippets.

@raank
Last active August 29, 2015 14:24
Show Gist options
  • Save raank/5aad87a47e1d2b98d1bc to your computer and use it in GitHub Desktop.
Save raank/5aad87a47e1d2b98d1bc to your computer and use it in GitHub Desktop.
<?php
// Ele recebe o valor do the_content e adiciona o shortcode na função the_content
if ( ! function_exists( 'facebook_button_the_content' ) ) {
function facebook_button_the_content( $content ) {
$html = $content;
$html .= ( is_single() ? do_shortcode('[easy-social-share buttons="facebook" counters=0 style="button" template="big" facebook_text="Gostou? Compartilhe!"]') : '');
return $html;
}
add_filter( 'the_content', 'facebook_button_the_content', 1 );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment