Tag de função / modelo de WordPress para obter primeiro n palavras do conteúdo
-
-
Vocêestáprocurandopelotrecho.Eufiz uma resposta completa sobreisso.Dê uma olhada [aqui] (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 responda
- votos
-
- 2014-04-16
yep,
wp_trim_words()
:<?php $trimmed = wp_trim_words( $text, $num_words = 55, $more = null ); ?>
ouno seu 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 Se você quiser usarissoem 'get_the_content () `,vocêprecisarátira HTML antecipadamente (ver revisão).@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
-
Parecefuncionarparamim semfaixaextra,mas ébom saber.It seems to work for me without extra strip down, but good to know.
- 0
- 2014-04-16
- Jaromír the Greenhorn
-
Eu ainda aconselhariafortemente que você usá-lo -podeestarfuncionando agora,maseventualmente você acabará com 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
-
(*irônico *) Tudobem,mestre,euprometo ser obediente!(*ironic*) Alright, Master, I promise to be obedient!
- 0
- 2014-04-17
- Jaromír the Greenhorn
OK,issopode ser uma duplicata,euera simplesmenteincapaz de colocarminhaideiaem termos debusca adequados,desculpeporisso!
Há umafunçãoincorporada outag demodelopara obter oprimeiro
n
palavras do conteúdo?Quero dizerthe_content()
.Obrigado!