Gallery Shortcode
// Add Shortcode
function gallery_shortcode( $atts ) {
// Attributes
$atts = shortcode_atts(
array(
'images' => '',
),
$atts,
'gallery'
);
}
add_shortcode( 'gallery', 'gallery_shortcode' );
// Add Shortcode
function gallery_shortcode( $atts ) {
// Attributes
$atts = shortcode_atts(
array(
'images' => '',
),
$atts,
'gallery'
);
}
add_shortcode( 'gallery', 'gallery_shortcode' );