Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. //adds social share in AMP pages add in function.php /WP
  2.  
  3. add_filter('the_content', 'my_social_share');
  4. function my_social_share($content) {
  5. if(is_single()) {
  6. $before_after_content = '<div class=social-share>
  7. <amp-social-share width=35 height=35 type=facebook data-param-app_id=xxxxxxxxxxxxx></amp-social-share>
  8. <amp-social-share height=35 width=35 type=twitter></amp-social-share>
  9. <amp-social-share height=35 width=35 type="system"></amp-social-share>
  10. </div>';
  11. $share_content = $before_after_content . $content . $before_after_content;
  12. } else {
  13. $share_content = $content;
  14. }
  15. return $share_content;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement