Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miya0001/dynamic-hostname
fix hostname problem when using the vagrant cloud for WordPress
https://github.com/miya0001/dynamic-hostname
Last synced: 2 months ago
JSON representation
fix hostname problem when using the vagrant cloud for WordPress
- Host: GitHub
- URL: https://github.com/miya0001/dynamic-hostname
- Owner: miya0001
- Created: 2014-03-12T17:05:36.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-10-12T07:24:24.000Z (about 9 years ago)
- Last Synced: 2024-10-10T20:52:07.309Z (2 months ago)
- Language: PHP
- Size: 272 KB
- Stars: 5
- Watchers: 3
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: readme.txt
Awesome Lists containing this project
README
=== Dynamic Hostname ===
Contributors: miyauchi, megumithemes, tekapo, inc2734, toro_unit
Tags: wp_home, site_url, hostname, vagrant cloud
Requires at least: 3.8
Tested up to: 4.1
Stable tag: 0.4.1
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.htmlSet hostname dynamically for the development.
== Description ==
This plugin changes dynamically and automatically the host name which WordPress uses. For example, when you run WordPress on your different servers, for production, development or staging, the host name will be changed dynamically and each site won't have broken links. It's very useful when you use it with Vagrant Cloud.
= Some features =
* Temporarily changes the host name to the current host name ($_SERVER['HTTP_HOST']).
* Also replaces the host name of the links to the contents and the images in the same site.
* The host name included in the contents on the development server will be changed to the one for the production server. (You don't need to replace the host name in the database when you move it to the production server.)
* The host name in the editor window is temporarily replaced with the current host name, so when you edit some on the development server, you never have broken links.= Hooks to use for replacing =
This plugin uses the filter hooks below to replace the host name in URL.
`
$hooks = array(
"home_url",
"site_url",
"stylesheet_directory_uri",
"template_directory_uri",
"plugins_url",
"wp_get_attachment_url",
"theme_mod_header_image",
"theme_mod_background_image",
"the_content",
"upload_dir",
"widget_text",
);
`Those hooks also have their own filter hooks, so you can customize with other plugins you are using, etc.
`add_filter('dynamic_hostname_filters' function($hooks){
$hooks[] = 'some_filter_hook';
return $hooks;
});`== Installation ==
= Manual Installation =
1. Upload the entire `/dynamic-hostname` directory to the `/wp-content/plugins/` directory.
2. Activate through the 'Plugins' menu in WordPress.== Changelog ==
= 0.4.1 =
* Tested up to 4.1
= 0.1.0 =
* First release