Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Whatsapp base

// Add Shortcode
function whatsappDirectMessage( $atts ) {

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

}
add_shortcode( 'whatsappDirectMessage', 'whatsappDirectMessage' );