用js替换实现wordpress的Tweet blender插件实现大图显示

let Tweet blender plugins to show big photo, not normal picture.

这个插件是让你的wp网站实现tweet滚动试播放,而且是多人的,

按照时间顺序展示你的tweet。

默认色展示中图,48*48像素,个人应用感觉太小,想改成73*73的。

只要下载插件中的main.js找到

1124行左右有一个 :

return template.format(this.divId,nameHtml,imageUrl,textHtml,tweetJson.id_str,dateHtml,sourceHtml);

在它上面加上:

imageUrl =imageUrl.replace(/normal/g, ‘bigger’);

就可以替换了!

原先我想在php文件替换,可是发现不行。

php替换代码是这样的:

$tweet->user->profile_image_url = str_replace(‘_normal’, ‘_bigger’, $tweet->profile_image_url);

好了。最后看下效果图吧。