Balise de fonction / modèle Wordpress pour obtenir les n premiers mots du contenu
-
-
Vous recherchez l'extrait.J'aifait une réponse complète à ce sujet.Jetez un œil [ici] (http://wordpress.stackexchange.com/a/141136/31545)You are looking for the excerpt. I done a complete answer on that. Have a look [here](http://wordpress.stackexchange.com/a/141136/31545)
- 1
- 2014-04-16
- Pieter Goosen
-
1 réponses
- votes
-
- 2014-04-16
Oui,
wp_trim_words()
:<?php $trimmed = wp_trim_words( $text, $num_words = 55, $more = null ); ?>
Ou dans votre cas:
<?php echo apply_filters( 'the_content', wp_trim_words( strip_tags( $post->post_content ), 55 ) ); ?>
Yep,
wp_trim_words()
:<?php $trimmed = wp_trim_words( $text, $num_words = 55, $more = null ); ?>
Or in your case:
<?php echo apply_filters( 'the_content', wp_trim_words( strip_tags( $post->post_content ), 55 ) ); ?>
-
@ JaromírtheGreenhorn Si vous souhaitez utiliser ceci sur `get_the_content ()`,vous devrez supprimer le HTML aupréalable (voir la révision).@JaromírtheGreenhorn If you'd like to use this on `get_the_content()`, you'll need to strip HTML beforehand (see revision).
- 0
- 2014-04-16
- TheDeadMedic
-
Cela semblefonctionnerpourmoi sansbande supplémentaire,maisbon à savoir.It seems to work for me without extra strip down, but good to know.
- 0
- 2014-04-16
- Jaromír the Greenhorn
-
Je vous conseilleraistoujoursfortement de l'utiliser - celafonctionnepeut-êtremaintenant,mais vousfinirezpar vous retrouver avec du HTMLmalformé.I would still strongly advise that you use it - it might be working now, but eventually you'll end up with malformed HTML.
- 2
- 2014-04-17
- TheDeadMedic
-
(*ironique *) Trèsbien,Maître,je promets d'être obéissant!(*ironic*) Alright, Master, I promise to be obedient!
- 0
- 2014-04-17
- Jaromír the Greenhorn
OK,c'estpeut-être un doublon,je n'aitout simplementpaspumettremonidée dans lestermes de recherche appropriés,désolépour ça!
Existe-t-il unefonctionintégrée ou unebalise demodèlepour obtenir les
n
premiersmots du contenu?Je veux direthe_content()
.Merci!