Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. <?php
  2.  
  3. //tu ajoutes ça le fichier functions.php
  4.  
  5. function imgpub_shortcode($atts, $content = null) {
  6.     extract(shortcode_atts(array("src" => '', url => ''), $atts));
  7.     return '<a href="'.$url.'" class"imgpub" ><img src="' . $src . '" alt="'. do_shortcode($content) .'" /></a>';
  8. }
  9.  
  10. add_shortcode('imgpub', 'imgpub_shortcode');
  11.  
  12.  
  13.  
  14. //et ça c'est un shortcode que tu mets dans ton theme là où tu veux, dans un article
  15. // dans un template (.php) de ton theme, genre header.php ou autre comme ça
  16.  
  17. <?php echo do_shortcode('[imgpub src="http://example.com/image.jpg" url="http://tonliendetapub.fr"] La description de l image la balise alt de l img [/imgpub]'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement