Advertisement
Guest User

Untitled

a guest
May 25th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function shortcode_with_attributes( $atts, $content = null ) {
  2. extract( shortcode_atts( array(
  3. 'attribute' => '',
  4. 'another' => ''
  5. ), $atts ) );
  6.  
  7. return '<div class="shortcode_wrapper">
  8. <h2>'.$attribute.'</h2>
  9. '.$another.'
  10. </div>';
  11. }
  12. add_shortcode('shortcode_name', 'shortcode_with_attributes');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement