Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Infobulle popover

// Add Shortcode
function infobulle_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'titre' => '',
			'contenu' => '',
		),
		$atts
	);

	return "<span class='pop' data-container='body' data-toggle='popover' data-placement='top' data-content='" . $contenu . "'>" . $titre . "</span>"

}
add_shortcode( 'infobulle', 'infobulle_shortcode' );