<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);
修剪the_content()無法正常工作時,從0裁剪內容100這個位於my_theme/functions/widgets/widget-portfolio-posts-thumbs.php
SUBSTR()不工作在WordPress的插件
你檢查$內容?它是否打印內容? –