Open div tag
// Add Shortcode
function open_div_shortcode( $atts ) {
// Attributes
extract( shortcode_atts(
array(
'class' => '',
'id' => '',
), $atts )
);
// Code
return '<div>';
}
add_shortcode( 'div', 'open_div_shortcode' );
// Add Shortcode
function open_div_shortcode( $atts ) {
// Attributes
extract( shortcode_atts(
array(
'class' => '',
'id' => '',
), $atts )
);
// Code
return '<div>';
}
add_shortcode( 'div', 'open_div_shortcode' );