firefox:自定义 WordPress 博客侧边栏中的 bit.ly 链接出现 404 错误
我在博客的侧边栏上显示 Twitter 状态更新,该博客通常也有 bit.ly 或 ow.ly 链接。但每次我在 Firefox 浏览器中单击它时,都会出现 404 错误,因为它尝试访问以下网址:www.domain.com/blog/"http://bit.ly/uniquenumber”而不是 bit.ly/uniquenumber。
我刚刚检查了它,它似乎可以在 mac 上的 google chrome 上运行,但不能在 mac os x 上的 firefox 上运行。还有其他人有类似的问题吗?
下面是接收twitter状态更新的代码:
/* These prefixes and suffixes will display before and after the entire block of tweets. */
$prefix = ""; // Prefix - some text you want displayed before all your tweets.
$suffix = ""; // Suffix - some text you want displayed after all your tweets.
$tweetprefix = ""; // Tweet Prefix - some text you want displayed before each tweet.
$tweetsuffix = "<br \><br \>"; // Tweet Suffix - some text you want displayed after each tweet.
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=1" . $limit;
function parse_feed($feed, $prefix, $tweetprefix, $tweetsuffix, $suffix) {
$feed = str_replace("<", "<", $feed);
$feed = str_replace(">", ">", $feed);
$clean = explode("<content type=\"html\">", $feed);
$amount = count($clean) - 1;
echo $prefix;
for ($i = 1; $i <= $amount; $i++) {
echo $tweetsuffix;
$cleaner = explode("</content>", $clean[$i]);
echo $tweetprefix;
echo $cleaner[0]; echo $suffix; echo $tweetsuffix; ?>
<img src="<?php echo get_bloginfo('template_directory');?>/images/side.png" alt="A line dividing the twitter updates and the open courses listing">
<?php
}
echo $suffix;
}
$twitterFeed = file_get_contents($feed);
parse_feed($twitterFeed, $prefix, $tweetprefix, $tweetsuffix, $suffix);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为你想出来了。改变这个:
到这个
Figured it out for you. Change this:
to this