Advertisement
Guest User

Added code

a guest
Oct 10th, 2011
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function caption_shortcode( $atts, $content = null ) {
  2. extract( shortcode_atts( array(
  3. 'class' => 'caption',
  4. ), $atts ) );
  5.  
  6. return '<span class="' . esc_attr($class) . '">' . $content . '</span>';
  7. }
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement