Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

plugin shortcode

// Add Shortcode
function player_picks_shortcode( $atts ) {

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

}
add_shortcode( 'player_picks', 'player_picks_shortcode' );