Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function add_share_button($atts, $content = null )
  2. {
  3. $atts = shortcode_atts(
  4. array(
  5. 'url' => 'https://www.google.com.hk/',
  6. 'layout' => 'button'
  7. ), $atts
  8. );
  9.  
  10. return '<div class = "fb-share-button" data-href="'.$atts['url'].'" data-layout="button"></div>';
  11. }
  12.  
  13. add_shortcode('test_lmc', 'add_share_button');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement