Etiqueta de plantilla / función de Wordpress para obtener las primeras n palabras del contenido
-
-
Estásbuscandoelextracto.Hice una respuesta completa sobreeso.Eche un vistazo [aquí] (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 respuesta
- votos
-
- 2014-04-16
Sí,
wp_trim_words()
:<?php $trimmed = wp_trim_words( $text, $num_words = 55, $more = null ); ?>
Oen su caso:
<?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 desea usarestoen `get_the_content ()`,necesitaráeliminar HTML de antemano (ver revisión).@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
-
Parecefuncionarparamí sin un desvestido adicional,peroesbueno saberlo.It seems to work for me without extra strip down, but good to know.
- 0
- 2014-04-16
- Jaromír the Greenhorn
-
Aún así,le recomendaríaencarecidamente que lo use;puede queestéfuncionando ahora,peroeventualmenteterminará con HTMLmalformado.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
De acuerdo,estopodría ser un duplicado,simplementenopudeponermi ideaen lostérminos debúsqueda adecuados,¡lo siento!
¿Hay unafunciónincorporada o unaetiqueta deplantillapara obtener lasprimeras
n
palabras del contenido?Me refiero athe_content()
.¡Gracias!