Advertisement
verygoodplugins

Untitled

Aug 3rd, 2017
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_shortcode( 'scheduling', 'scheduling_shortcode' );
  2.  
  3. function scheduling_shortcode( $atts, $content = '' ) {
  4.  
  5.     $atts = shortcode_atts(
  6.         array(
  7.             'site' => null,
  8.         ), $atts, 'scheduling' );
  9.  
  10.     $atts['site'] = do_shortcode( $atts['site'] );
  11.  
  12.     return // whatever it's supposed to look like
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement