Page 1 sur 1

[WordPress] ShortCode Pbart

Posté : dim. 1 sept. 2013 01:54
par Dakin Quelia
» ShortCode Pbart

Ce petit code vous permet d'intégrer une barre de progression en php dont vous trouverez le code source ici.

Code : Tout sélectionner

/**************************************************************************
* @name         - Simple ShortCode Pbart
* @version      - 1.0.0
* @author       - Dakin Quelia
* @description  - Ceci permet d'intégrer une barre de progression php
**************************************************************************/
function shortcode_pbart( $atts, $content = null )
{
    // Attributes
    extract(shortcode_atts(array(
        'text'         => '',
        'percent'    => '',
        ), $atts)    
    );
        
    return '<img src="http://localhost/pbart.php?p=' . $percent . '&t=' . $text . '" alt="' . $text . '" />';
} 
Note: n'oubliez pas de changer le chemin de l'image.