Full Div Shortcode
// Add Shortcode
function shortcode_full( $atts , $content = null ) {
// Attributes
extract( shortcode_atts(
array(
'width' => '100%',
'height' => 'auto',
), $atts )
);
// Code
return '<div class="full"
width="' . $width . '"
height="' . $height . '">' . $content . '</div>';
}
add_shortcode( 'fulldiv', 'shortcode_full' );