Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
Coupe WPB
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Comment mettre en évidence les termes de recherche dans les résultats sous WordPress

Afin de rendre votre recherche WordPress encore plus simple/simple d’utilisation, vous pouvez mettre en évidence les termes recherchés dans les résultats. Nous avons fait cela pour l’un de nos clients, nous avons donc pensé que ce serait utile pour d’autres utilisateurs/utilisatrices. Dans cet article, nous allons vous afficher comment vous pouvez mettre en évidence les termes de recherche dans les résultats sur WordPress.

Highlighting search terms in WordPress search results

Ouvrez tout d’abord votre search.php et recherchez le code suivant :

<?php the_title(); ?>

Remplacez le code ci-dessus par :

<?php echo $title; ?>

Confirmez que vous collez cette ligne au-dessus du code du titre :

<?php $title = get_the_title(); $keys= explode(" ",$s); $title = preg_replace('/('.implode('|', $keys) .')/iu', '<strong class="search-excerpt">\0</strong>', $title); ?>

Ouvrez maintenant votre fichier CSS et ajoutez le style pour la classe rechercher-excerpt, et le terme sera mis en évidence. Actuellement, le code met les termes de recherche en gras. Vous pouvez essayer ce CSS simple dans la feuille de style de votre thème.

strong.search-excerpt { 
background-color:yellow;
color:blue;
}

Source : Michael Martin

Divulgation : Notre contenu est soutenu par les lecteurs. Cela signifie que si vous cliquez sur certains de nos liens, nous pouvons gagner une commission. Consultez comment WPBeginner est financé, pourquoi cela compte et comment vous pouvez nous soutenir. Voici notre processus éditorial.

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

L'ultime WordPress Toolkit

Accédez GRATUITEMENT à notre boîte à outils - une collection de produits et de ressources liés à WordPress que tous les professionnels devraient avoir !

Reader Interactions

17 commentairesLaisser une réponse

  1. Syed Balkhi

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Rachelle

    This works great but how do you highlight the search term in the excerpt and not just the title?

  3. Imme

    Hej, thank you very much for this very helpful piece of code. Is there a way to exclude links? The code as is breaks many of the « more »-links on my site.

  4. Vernon Fowler

    Any chance you can update this neat tutorial for modern themes such as Twenty Seventeen where instead of title() in the loop, the loop goes through:

     get_template_part( 'template-parts/post/content', 'excerpt' );

    I’m comfortable with replacing

    <strong class="search-excerpt">\0</strong>

    with HTML5

    <mark>\0</mark>

    and the relevant CSS.

    Or will we need a different approach in themes using get_template_part ?

    • WPBeginner Support

      Hey Vernon,

      Thanks for the suggestion. We will try to update the article with more detailed instructions.

      Meanwhile, you will need to edit the /template-parts/content-search.php template. If your theme does not have it, then you can create it and then reference it in your search.php template.

      Administrateur

      • Vernon Fowler

        That’s working. Thank you.

        Can we do the same for the_content as for the the_title or do we need a different approach?

  5. Wayan Cenik

    Thanks a lot for the code, is work perfectly
    I just the code at function, and done, is work

  6. Marlene

    Hi

    I can´t find on my site. I have this:

    How can I change someting in that?

    Thanks
    Marlene

  7. Steph

    There is no «  » in my search.php file..
    —————————–
    Mine looks like this:

    «  »

    • WPBeginner Support

      Seems like you wanted to paste code and it stripped out. Please wrap your code around [php] [/php] tags

      Administrateur

  8. Steve

    This doesn’t even come close to working. All it does is display the title of the page the search term is found on. The terms themselves aren’t wrapped in any tags whatsoever.

    • nate

      Actually, it works perfectly. I don’t think you know what you are doing.

  9. Jason

    Thanks! Works like a charm!

  10. Chris

    You should add a little example image on every tutorial, that would be more understandable (:

  11. DauAnunturi

    Nice tutorial. And for those wo want to make some highlight with colors they must define their css class as div.highlight
    and replace the code with
    And that`s alll. Thanks and have fun.

  12. Nina

    Very helpful tutorial, will use it later on :)
    Thanks for sharing!

Laisser une réponse

Merci d'avoir choisi de laisser un commentaire. Veuillez garder à l'esprit que tous les commentaires sont modérés selon notre politique de commentaires, et votre adresse e-mail ne sera PAS publiée. Veuillez NE PAS utiliser de mots-clés dans le champ du nom. Ayons une conversation personnelle et significative.