我怎样才能让Twitter工具插件超链接到每个链接?

时间:2013-08-14 作者:Chris

似乎(Twitter)缩短的链接不是自动超链接,而非缩短的链接是自动超链接。

是否有一个补丁可以使所有链接都超链接,因此可以单击?

E、 g。http://cl.ly/image/3B2S3z472n0U

http://wordpress.org/plugins/twitter-tools/

1 个回复
最合适的回答,由SO网友:RRikesh 整理而成

从未使用过此插件。WordPress有一个名为make_clickable() 这可能对你有帮助。

示例:

$string = "This is a long text that contains some links like http://www.wordpress.org and http://www.wordpress.com .";
echo make_clickable($string); 
输出:

This is a long text that contains some links like <a href="http://www.wordpress.org" rel="nofollow">http://www.wordpress.org</a> and <a href="http://www.wordpress.com" rel="nofollow">http://www.wordpress.com</a> .

结束

相关推荐

Plugins_url(‘’,__FILE__)!=带有sym链接的WP_plugin_URL

对于我的众多网站之一,plugins/plugin-name 是指向的符号链接universal-install/wp-content/plugins/plugin-name.echo WP_PLUGIN_URL 显示我期望的内容echo plugins_url(); 显示我期望的内容echo plugins_url(\'\',__FILE__) 显示我期望的内容,后跟指向通用插件目录的绝对路径。我有什么办法可以解决吗echo plugins_url(\'\',__FILE__) 仅返回预期结果?