Guest User

Untitled

a guest
Jan 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. function hm_Button( $atts, $content = null ) {
  2.  
  3. extract( shortcode_atts( array(
  4. 'link' => '#',
  5. 'target' => '',
  6. 'type' => 'yellow'
  7. ), $atts ) );
  8.  
  9. if ($rounded=="yes") { $rounded = "rounded"; } else { $rounded = " "; }
  10.  
  11. if ($target=="_blank") { $target=' target="_blank"'; }
  12. $color_button = '<a class="button' .$rounded. ' ' . $type . '" href="'.$link.'"' . $target . '>' . trim($content) . '</a>';
  13.  
  14. return $color_button;
  15. }
  16. add_shortcode('cbutton', 'hmButton');
Add Comment
Please, Sign In to add comment