ASky 是一个很棒的主题,但免不了有一些不如意的地方。ASky 主题中密码保护文章的摘要是取自文章内容的前150个字符,有点暴力,但是能让页面美观不少。
### 具体操作
修改主题目录下
tpl/content.php
第30行
<p><?php echo mb_strimwidth(strip_shortcodes(strip_tags(apply_filters('the_content', $post->post_content))), 0, 150,"...");?></p>
改为
<p><?php echo mb_strimwidth(strip_shortcodes(strip_tags(get_the_excerpt())), 0, 150,"...");?></p>
此方法对ASky衍生主题或Akina衍生主题亦可适用。(如Siren,Scilper等)(未验证)
本作品使用基于以下许可授权:Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.