Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Time Restriction

// Add Shortcode
function time_restricion( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'on' => '',
			'off' => '',
		),
		$atts
	);

}
add_shortcode( 'time-restrict', 'time_restricion' );