在修改wordpress主题时发现了这样一条js,能给友情链接自动加上网站的favicon图标,很酷很方便,分享出代码:
//favicon+Google
$(‘.blogroll li a’).each(function(e){$(this).prepend(“<img src=http://www.google.com/s2/favicons?domain=”+this.href.replace(/^(http:\/\/[^\/]+).*$/, ‘$1′).replace( ‘http://’, ” )+”> “);});