function nom_unique_de_la_fonction() { // Nom de la fonction (doit être unique !)
?>
// Afficher du contenu en HTML
<?php
}add_shortcode( ‘SHORTCODE’, ‘nom_unique_de_la_fonction’); /// « SHORTCODE » peut-être « nom_unique_de_la_fonction ». C’est çe [SHORTCODE] que vous devrez appeler pour afficher le contenu
/* _________________________________________________ Version HTML ___________________________________________________ */
function nom_unique_de_la_fonction ($attributs) {
$attributs = shortcode_atts( array(
‘ID’ => ‘0’
‘text’ => ‘texte non renseigné’
), $attributs );
echo « ceci est mon ID = ».$attributs[‘ID’] ;
}add_shortcode( ‘SHORTCODE’, ‘nom_unique_de_la_fonction’); /// « SHORTCODE » peut-être « nom_unique_de_la_fonction ». C’est ça [SHORTCODE] que vous devrez appeler pour afficher le contenu