我正在使用SeaofClouds的Tweet插件(可在http://tweet.seaofclouds.com/找到)
代码很简单:
$(document).ready(function(){
$('#twitter_feed_chad').tweet({
avatar_size: 24,
count: 1,
username: "<? echo $settings['twitter'][0]?>",
template: "{text} » {retweet_action}"
});
$('#twitter_feed_ian').tweet({
avatar_size: 24,
count: 1,
username: "<? echo $settings['twitter'][1]?>",
template: "{text} » {retweet_action}"
});
});
HTML很直接..
<h4>Chad's Tweets</h4>
<div class="grid_6 alpha omega footer_twitter_feed" id="twitter_feed_chad">
</div>
<h4>Ian's Tweets</h4>
<div class="grid_6 alpha omega footer_twitter_feed" id="twitter_feed_ian">
</div>
但是我无法更改模板 - 它保持默认状态,它首先显示推文的时间(约一小时前等),然后是推文文本,根本没有转发链接。
答案 0 :(得分:0)
保持默认状态可能表明您从服务器获取的数据可能存在问题,并且代码的PHP部分出现问题。尝试写出整个标记并查看是否有任何更改,I.E <?php echo $settings['twitter'][0];?>
,因为可能是您的PHP设置正在禁用short tags。并查看是否可以在$(document).ready(function(){