Current Path : /var/www/html/wp-content/themes/church-event/vamtam/shortcodes/ |
Current File : /var/www/html/wp-content/themes/church-event/vamtam/shortcodes/inline_divider.php |
<?php function wpv_shortcode_inline_divider($atts, $content = null, $code = null ) { extract(shortcode_atts(array( 'type' => '1', ), $atts)); if($type == '1') return '<div class="sep"></div>'; if($type == '2') return '<div class="sep-2"></div>'; if($type == '3') return '<div class="sep-3"></div>'; if($type == 'clear') return '<div class="clearboth"></div>'; } add_shortcode('inline_divider', 'wpv_shortcode_inline_divider');