Simple Box Styling Shortcode
// Add Shortcode
function custom_shortcode( $atts , $content = null ) {
// Attributes
$atts = shortcode_atts(
array(
'style' => '1',
),
$atts,
'box'
);
}
add_shortcode( 'box', 'custom_shortcode' );
// Add Shortcode
function custom_shortcode( $atts , $content = null ) {
// Attributes
$atts = shortcode_atts(
array(
'style' => '1',
),
$atts,
'box'
);
}
add_shortcode( 'box', 'custom_shortcode' );