Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

vc_map type number

<?php
add_shortcode( 'bartag', 'bartag_func' );
function bartag_func( $atts, $content = null ) { // New function parameter $content is added!
 extract( shortcode_atts( array(
  'foo' => 'something',
  'color' => '#FFF'
 ), $atts ) );
  
 $content = wpb_js_remove_wpautop($content, true); // fix unclosed/unwanted paragraph tags in $content
  
 return "<div style='color:{$color};' data-foo='${foo}'>{$content}</div>";
}
?>
Source by kb.wpbakery.com #
 
PREVIOUS NEXT
Tagged: #type #number
ADD COMMENT
Topic
Name
9+6 =