难以在嵌入式 (iframe) 推文按钮中包含 wordpress 短链接


Difficulty including wordpress shortlink in am embedded (iframe) tweet button

我正在尝试以编程方式在页面上的iframe中包含推文按钮。我希望这在推特上发布特定帖子的wordpress短链接。

我正在使用PHP将以下HTML iframe代码插入到我的wordpress数据库中,以包含weet按钮。 代码如下所示

'<iframe allowtransparency="true" frameborder="0" scrolling="no"  
src="https://platform.twitter.com/widgets/tweet_button.html
?count=horizonatal?url=http://www.mywebsite.com?p= '
 . $post_id . '"></iframe>'

正如你所看到的,我正在连接PHP代码中的$post_id,其余的wordpress短链接"http://www.mywebsite.com?p="。 问题似乎是Twitter小部件将我的url属性中的"?"解释为对自己的查询 - 而不是对我的wordpress网站的查询 - 发生的事情是我只能得到 http://www.mywebsite.com 推文。

有谁知道解决这个问题的方法?

你需要使用 urlencode:

'<iframe allowtransparency="true" frameborder="0" scrolling="no"  
src="https://platform.twitter.com/widgets/tweet_button.html
?count=horizonatal?url='.urlencode('http://www.mywebsite.com?p='.$post_id)
 .'"></iframe>'

阅读: http://www.php.net/urlencode