Advertisement
Guest User

GP Share Buttons

a guest
Mar 15th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. // Scriptless social sharing buttons before and after content
  2. add_action( 'generate_before_content', 'gp_share_buttons', 10);
  3. add_action( 'generate_after_content', 'gp_share_buttons', 10);
  4. function gp_share_buttons() {
  5.  if ( is_single() ) {
  6.  echo do_shortcode( '[scriptless]' );
  7.  }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement