Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Pet Family Shortcode

// Add Shortcode
function petfamily_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'avatar' => 'yes',
			'type' => 'yes',
			'birthday' => 'yes',
		),
		$atts
	);

	//PUT CODE HERE

}
add_shortcode( 'petfamily', 'petfamily_shortcode' );