WordPress
excerpt_length 및 excerpt_more를 사용한 사용자 지정 발췌
수색…
발췌 길이를 50 단어로 제한하십시오.
functions.php에 다음 코드를 추가하십시오 :
function themify_custom_excerpt_length( $length ) {
return 50;
}
add_filter( 'excerpt_length', 'themify_custom_excerpt_length', 999 );
999를 우선 순위로 사용하여 기본 WordPress 필터 이후에 함수가 실행되도록하십시오. 그렇지 않으면 여기에 설정된 내용보다 우선합니다.
발췌문 끝 부분에 추가 읽기 링크 추가
이렇게하려면 다음 코드를 functions.php에 넣으십시오.
function custom_excerpt_more($more) {
return '<a href="'. get_permalink($post->ID) . '">Read More</a>';
}
add_filter('excerpt_more', 'custom_excerpt_more');
결과는 다음과 같아야합니다.
발췌문 끝 부분에 몇 개의 점 추가
our functions.php에서
function new_excerpt_more( $more ) {
return '.....';
}
add_filter('excerpt_more', 'new_excerpt_more');
우리는 이것을 얻어야한다.
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow