feedwordpress 본문 전체가 아닌 글의 일부만 추출하는 방법
- Uncategorized
- 2011. 11. 1.
feedwordpress 본문 전체가 아닌 글의 일부만 추출하는 방법
간단하게 정리하면 아래의 소스를 단일글 페이지에서 수정해주시면 됩니다.
How do I get FeedWordPress to display only a short summary or excerpt of syndicated posts, instead of the full content
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
To read like this instead:
<div class="entry">
<?php if (is_syndicated()) :
// Strip down to an excerpt
$text = get_the_content(); $text = strip_tags($text);
if (strlen($text) > 255) :
$text = substr($text, 0, 252).'...';
endif;
print $text;
else :
the_content('Read the rest of this entry »');
endif; ?>
</div>
위의 코드를 저렇게 변경해주시면 되는데... 일부 스킨에서는 사이드바가 깨질수있습니다.
저 같은 경우는 사이드바가 깨져서 사용을 못하고 있습니다. 하지만, 기능은 정상작동하더군요.