Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

lottery shortcode

// Add Shortcode
function lottery( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
		),
		$atts,
		'lottery'
	);

}
add_shortcode( 'lottery', 'lottery' );