Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--------------------------------------------Button Short Code----------------------------------------------------------------->
- <?php
- function button_shortcode($atts,$content=null){
- extract(shortcode_atts(array(
- 'title'=>'',
- 'link'=>'',
- 'background'=>'',
- 'color'=>'',
- 'padding'=>'',
- 'width'=>'',
- 'height'=>'',
- 'text'=>'',
- 'hover'=>''
- ),));
- return'
- <style type="text/css">
- .google_button{background:'.$background.';color:'.$color.';padding:'.$padding.';width:'.$width.';height:'.$height.'}
- .google_button:hover{background:'.$background.';color:'.$color.'}
- </style>
- <a href="'.$link.'" class="google_button">'.$text.'</a>
- ';
- }
- add_shortcode('button','button_shortcode');
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement