반응형
wordpress 위젯에서_content()를 자르는 데 subst()가 작동하지 않습니다.
<div class="wpex-recent-posts-content clr">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a><p>
<?php
$content = the_content();
echo substr($content,0,100);
?>
</p>
</div>
여기서echo substr($content,0,100);
콘텐츠를 0에서 100으로 자르기 위해 작동하지 않습니다.이것은 다음 위치에 있습니다.my_theme/functions/widgets/widget-portfolio-posts-thumbs.php
이것을 사용해 보세요.
$content = get_the_content();
$content = strip_tags($content);
echo substr($content, 0, 100);
그 이유는_content()가 실제로 내용을 출력하기 때문입니다.사용하는 것은 get_the_content()입니다.
언급URL : https://stackoverflow.com/questions/22506239/substr-not-working-to-trim-the-content-in-wordpress-widget
반응형
'IT' 카테고리의 다른 글
SQLPLUS를 사용하여 명령줄에서 PL/SQL 스크립트에 인수를 전달하려면 어떻게 해야 합니까? (0) | 2023.03.09 |
---|---|
체크박스가 있는 Woocomme 업셀 (0) | 2023.03.09 |
API를 사용하지 않고 MailChimp 관심 그룹 ID를 얻을 수 있습니까? (0) | 2023.03.04 |
PHP에서 경고 잘못된 문자열 오프셋을 수정하는 방법 (0) | 2023.03.04 |
mongodb 컬렉션에 중복 문서 삽입을 중지하는 방법 (0) | 2023.03.04 |