IT

wordpress 위젯에서_content()를 자르는 데 subst()가 작동하지 않습니다.

itgroup 2023. 3. 4. 14:45
반응형

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

반응형