Advertisement
Gaskabur

Crear un shortcode

Sep 16th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function nombre_autor($atts){
  2. $p = shortcode_atts( array (
  3. 'nombre' => 'Invitado',
  4. 'color' => 'blue'
  5. ), $atts );
  6. $texto = 'Este artículo ha sido creado por <span style="color:'.$p['color'].'">'.$p['nombre'].'</span>.';
  7. return $texto;
  8. }
  9. add_shortcode('autor','nombre_autor');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement