Ce petit code vous permet d'intégrer Kiwiirc sur votre blogue.
Code : Tout sélectionner
/**************************************************************************
* @name - Simple ShortCode Kiwiirc
* @version - 1.0.0
* @author - Dakin Quelia
* @description - Ceci permet d'intégrer une applet chat IRC sur votre
* page, article et widget.
**************************************************************************/
function shortcode_kiwiirc($atts)
{
// Attributes
extract(shortcode_atts(array(
'src' => '',
'width' => '',
'height' => '',
), $atts)
);
// Code
return '<iframe src="' . $src . '" style="border:0; width:' . $width .'; height:' . $height . ';"></iframe>';
}