콘텐츠의 처음 n 개 단어를 가져 오는 Wordpress 함수 / 템플릿 태그
-
-
발췌문을 찾고 있습니다.나는 그것에 대해 완전한 대답을했습니다.[여기] (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 대답
- 투표
-
- 2014-04-16
예,
wp_trim_words()
:<?php $trimmed = wp_trim_words( $text, $num_words = 55, $more = null ); ?>
또는 귀하의 경우 :
<?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`get_the_content ()`에서 이것을 사용하려면 미리 HTML을 제거해야합니다 (개정판 참조).@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
-
여분의 스트립 없이도 작동하는 것 같지만 알아두면 좋습니다.It seems to work for me without extra strip down, but good to know.
- 0
- 2014-04-16
- Jaromír the Greenhorn
-
지금은 작동 할 수도 있지만 결국에는 잘못된 HTML로 끝날 것입니다.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
-
(*ironic *) 좋아요,스승님,순종 할 것을 약속합니다!(*ironic*) Alright, Master, I promise to be obedient!
- 0
- 2014-04-17
- Jaromír the Greenhorn
알겠습니다. 중복 된 것일 수 있습니다. 내 아이디어를 적절한 검색어로 입력 할 수 없었습니다. 죄송합니다.
콘텐츠의 처음
n
단어를 가져 오는 내장 함수 또는 템플릿 태그가 있습니까?the_content()
를 의미합니다.감사합니다!