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' );