Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function custom_button_shortcode( $atts, $content = null ) {
  2.    
  3.     // shortcode attributes
  4.     extract( shortcode_atts( array(
  5.         'url'    => '',
  6.         'title'  => '',
  7.         'target' => '',
  8.         'text'   => '',
  9.     ), $atts ) );
  10.  
  11.     $content = $text ? $text : $content;
  12.  
  13.     // Returns the button with a link
  14.     if ( $url ) {
  15.  
  16.         $link_attr = array(
  17.             'href'   => esc_url( $url ),
  18.             'title'  => esc_attr( $title ),
  19.             'target' => ( 'blank' == $target ) ? '_blank' : '',
  20.             'class'  => 'custombutton'
  21.         );
  22.  
  23.         $link_attrs_str = '';
  24.  
  25.         foreach ( $link_attr as $key => $val ) {
  26.  
  27.             if ( $val ) {
  28.  
  29.                 $link_attrs_str .= ' ' . $key . '="' . $val . '"';
  30.  
  31.             }
  32.  
  33.         }
  34.  
  35.  
  36.         return '<a' . $link_attrs_str . '><span>' . do_shortcode( $content ) . '</span></a>';
  37.  
  38.     }
  39.  
  40.     // Return as span when no link defined
  41.     else {
  42.  
  43.         return '<span class="custombutton"><span>' . do_shortcode( $content ) . '</span></span>';
  44.  
  45.     }
  46.  
  47. }
  48. add_shortcode( 'custombutton', 'custom_button_shortcode' );