转载

Ghost博客:自定义微信分享缩略图和标题

微信分享网页的时候,会在网页里取不小于200*200的第一张图作为缩略图,取title标签里的内容作为标题。我结合ghost的代码,让微信取ghost博客顶部头图作为缩略图,并且在标题中加入了作者名字。

可能有人需要,共享出来。

自定义缩略图

以0.7.1版为例,把下面的代码放到 content/themes/casper/post.hbs 里 {{#post}} 后面即可

{{! 微信缩略图 }} <div style="position:absolute;left:-10000px;">       <img src="{{image}}" width="400" height="400" style="width:400px;height:400px;"> </div>   

在标题中加入作者

在 content/themes/casper/default.hbs 里 <title> 标签相应的位置加入下面代码

{{#post}}{{#author}}{{name}}{{/author}}{{/post}} 

效果

Ghost博客:自定义微信分享缩略图和标题

原文  http://delai.me/code/ghost-wechat/
正文到此结束
Loading...