Advertisement
asadsuman

Button Short Code

Mar 20th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <!--------------------------------------------Button Short Code----------------------------------------------------------------->
  2. <?php
  3.  
  4. function button_shortcode($atts,$content=null){
  5. extract(shortcode_atts(array(
  6. 'title'=>'',
  7. 'link'=>'',
  8. 'background'=>'',
  9. 'color'=>'',
  10. 'padding'=>'',
  11. 'width'=>'',
  12. 'height'=>'',
  13. 'text'=>'',
  14. 'hover'=>''
  15. ),));
  16. return'
  17. <style type="text/css">
  18. .google_button{background:'.$background.';color:'.$color.';padding:'.$padding.';width:'.$width.';height:'.$height.'}
  19. .google_button:hover{background:'.$background.';color:'.$color.'}
  20.  
  21. </style>
  22. <a href="'.$link.'" class="google_button">'.$text.'</a>
  23. ';
  24. }
  25. add_shortcode('button','button_shortcode');
  26.  
  27.  
  28.  
  29.  
  30.  
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement