开发者 | Sparanoid |
---|---|
更新时间 | 2018年10月28日 11:22 |
捐献地址: | 去捐款 |
PHP版本: | 2.1.0 及以上 |
WordPress版本: | 5.0 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
wp_make_link_relative
function to links (posts, categories, pages, etc.) to convert them to relative URLs. Useful for developers when debugging local WordPress instance on a mobile device (iPad, iPhone, etc.).
Notice: This plugin SHOULD be used for local development only. I haven't tested on a production environment; it may work with some issues, like unwanted URLs in RSS feed or sharing URLs are replaced with relative URLs, etc.
More information please visit my site.
例如:
http://localhost:8080/wp/
Will be converted to:
/wp/
And..
http://localhost:8080/wp/2012/09/01/hello-world/
Will be converted to:
/wp/2012/09/01/hello-world/
And..
http://localhost:8080/wp/wp-content/themes/twentyeleven/style.css
Will be converted to:
/wp/wp-content/themes/twentyeleven/style.css
Then after activating this plugin, you can simply access your local instance using http://10.0.1.5:8888/wp/
on your iPad or other mobile devices without having styles and navigation issue.
/wp-content/plugins/
directory, or just install this plugin from your WordPress backend.The URLs will be changed back to absolute URLs again, there's no database writes with this plugin.
URLs in RSS feed are also replaced to relative URLs with this plugin, this could causes some issues for RSS readers that they will be confused for URLs without host. Shared URLs (ie Jetpack Sharing module) are also replaced to related URLs, Twitter, Facebook or other social sites won't treat them as valid URLs.