Vous cherchez un moyen de vérifier si un article contient un extrait ? Bien qu’il existe probablement un plugin pour cela, nous avons créé un extrait de code rapide que vous pouvez utiliser pour vérifier si un article a la fonction the_excerpt
dans WordPress.
WordPress utilisera l’article comme extrait s’il n’y en a pas, c’est donc un bon moyen d’afficher l’extrait lorsque tous les articles n’en contiennent pas.
Instructions:
Tout ce que vous avez à faire est d’ajouter ce code au fichier post.php de votre thème :
<?php $my_excerpt = get_the_excerpt(); if($my_excerpt !='') { the_excerpt(); } ?>
Note : Si c’est la première fois que vous ajoutez des extraits de code dans WordPress, veuillez vous référer à notre guide sur la façon d’ajouter correctement des extraits de code dans WordPress, afin de ne pas briser accidentellement votre site.
Si vous avez aimé cet extrait de code, n’hésitez pas à consulter nos autres articles sur le site comme : 21 meilleurs thèmes WordPress pour l’immobilier et comment démarrer un blog.
i have moddriod theme installed on my website but some posts are showing excerpts and some are picking random texts and tags from the post, some of them only show the title which is not attractive as well as acceptable. will it work if I follow your instructions? I am not sure about the problem source
1. is it in the theme
2. rank math plugin
or anything else please help me.
Hey Kishor, you can troubleshoot by disabling the plugins one by one and see if any plugin is causing the issue.
[…] This post was mentioned on Twitter by HN Firehose, wp_freak. wp_freak said: #wordpress Check it post has the_excerpt http://bit.ly/h8VGwl […]
WordPress Check it post has the_excerpt – wpsnipp.com WordPress code snippets for your blog…
Adding this PHP code to your wordpress theme will allow you to check if a post contains an excerpt. WordPress will use the_content as an excerpt when one does not exists so this is a great way to display the excerpt when not every post will contain one…