0

在标题为 Build Your Own Tweet Button 的页面的最后,将代码复制到我的本地 wp 作品中

代码:

<a href="https://twitter.com/share?url=https%3A%2F%2Fdev.twitter.com%2Fpages%2Ftweet-button">Tweet</a>

如果没有所有 css,此代码会在单击显示时生成一个“推文”链接(在推特框/页面中,?url=

但是,当我在 href 中输入 php 后?url=,显示帖子标题后,什么也没有显示。不知道为什么会这样。线索?

我使用的代码是:

<a href="https://twitter.com/share?url=<?php echo(the_title()); ?>">Tweet</a>
4

1 回答 1

0

我假设 the_title() 正在生成与链接冲突的 HTML。可能:

urlencode(the_title())

将解决问题。

于 2013-07-24T20:48:54.253 回答