Archives par mot-clé : faq

Mes modifications

  • ajout de mon icône à mon thème "child" dans le fichier header.php
    <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri()  . "/favicon.ico" ;?> ">
  • ajouter une icone pour "lire la suite" dans le fichier functions.php
    function mytwentyten_custom_excerpt_more( $output ) {
    return $output . ' <a href="'. get_permalink() . '">' .'
    <img src="/images/LOGO-Cercle-Fleche2.png" alt="" />'
    . '</a>';
    }
    remove_filter( 'get_the_excerpt', 'twentyten_custom_excerpt_more' );
    add_filter( 'get_the_excerpt', 'mytwentyten_custom_excerpt_more' );
Tagged , , | Laisser un commentaire