-
Notifications
You must be signed in to change notification settings - Fork 7
/
readme.txt
101 lines (74 loc) · 4.57 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
=== WP Site Aliases ===
Contributors: johnjamesjacoby, stuttter
Tags: blog, site, meta, multisite, alias, domain, mapping
Requires at least: 4.5
Tested up to: 4.8
Stable tag: 7.0.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9Q4F4EL5YJ62J
== Description ==
The best way to allow custom domains in your WordPress Multisite installation
= Details =
* Seamlessly integrates into WordPress's dashboard interface
* Comes with turn-key `sunrise.php` drop-in
* Easily enable & disable aliases
* Safe, secure, & designed to scale
= Works great with =
* [WP Chosen](https://wordpress.org/plugins/wp-chosen/ "Make long, unwieldy select boxes much more user-friendly.")
* [WP Blog Meta](https://wordpress.org/plugins/wp-blog-meta/ "A global, joinable meta-data table for your WordPress Multisite sites.")
* [WP Event Calendar](https://wordpress.org/plugins/wp-event-calendar/ "The best way to manage events in WordPress.")
* [WP Pretty Filters](https://wordpress.org/plugins/wp-pretty-filters/ "Makes post filters better match what's already in Media & Attachments.")
* [WP Media Categories](https://wordpress.org/plugins/wp-media-categories/ "Add categories to media & attachments.")
* [WP Multi Network](https://wordpress.org/plugins/wp-multi-network/ "A network management interface for global multisite administrators.")
* [WP Term Order](https://wordpress.org/plugins/wp-term-order/ "Sort taxonomy terms, your way.")
* [WP Term Authors](https://wordpress.org/plugins/wp-term-authors/ "Authors for categories, tags, and other taxonomy terms.")
* [WP Term Colors](https://wordpress.org/plugins/wp-term-colors/ "Pretty colors for categories, tags, and other taxonomy terms.")
* [WP Term Families](https://wordpress.org/plugins/wp-term-families/ "Families of taxonomies for taxonomy terms.")
* [WP Term Icons](https://wordpress.org/plugins/wp-term-icons/ "Pretty icons for categories, tags, and other taxonomy terms.")
* [WP Term Images](https://wordpress.org/plugins/wp-term-images/ "Pretty images for categories, tags, and other taxonomy terms.")
* [WP Term Visibility](https://wordpress.org/plugins/wp-term-visibility/ "Visibilities for categories, tags, and other taxonomy terms.")
* [WP User Activity](https://wordpress.org/plugins/wp-user-activity/ "The best way to log activity in WordPress.")
* [WP User Alerts](https://wordpress.org/plugins/wp-user-alerts/ "Alert registered users when new content is published.")
* [WP User Avatars](https://wordpress.org/plugins/wp-user-avatars/ "Allow users to upload avatars or choose them from your media library.")
* [WP User Groups](https://wordpress.org/plugins/wp-user-groups/ "Group users together with taxonomies & terms.")
* [WP User Parents](https://wordpress.org/plugins/wp-user-parents/ "Allow parent users to manage their direct decendants.")
* [WP User Profiles](https://wordpress.org/plugins/wp-user-profiles/ "A sophisticated way to edit users in WordPress.")
== Installation ==
* Ensure `DO_NOT_UPGRADE_GLOBAL_TABLES` is not truthy in your `wp-config.php` or equivalent
* Ensure `wp_should_upgrade_global_tables` is not filtered to be falsey
* Download and install using the built-in WordPress plugin installer
* Network Activate in the "Plugins" area of the network-admin of the main site of your installation (phew!)
* Optionally drop the entire `wp-site-aliases` directory into `mu-plugins`
* No further setup or configuration is necessary
== Frequently Asked Questions ==
= Does this create new database tables? =
Yes. It adds `wp_blog_aliases` & `wp_blog_aliasmeta` to `$wpdb->ms_global_tables`.
= Does this support object caching?
Yes. It uses a global `blog-aliases` cache-group for all meta data.
= Does this modify existing database tables? =
No. All of WordPress's core database tables remain untouched.
= Where can I get support? =
* Basic: https://wordpress.org/support/plugin/wp-site-aliases/
* Priority: https://chat.flox.io/support/channels/wp-site-aliases/
= Where can I find documentation? =
http://github.com/stuttter/wp-site-aliases/
== Changelog ==
= [7.0.0] - 2017-04-11 =
* Database schema improvements
= [6.0.0] - 2017-04-03 =
* Add 'created_by' meta data
* Remove alias meta on delete
* Clean alias_meta cache on delete
= [5.0.0] - 2017-03-17 =
* Extend the WP_DB_Table base class
= [4.0.0] - 2017-02-17 =
* Single-site support
= [3.0.0] - 2016-12-06 =
* Add support for aliases to redirect vs. mask
= [2.1.0] - 2016-11-15 =
* Improve object cache usage
= [2.0.0] - 2016-09-10 =
* Update meta table key column name
= [1.0.0] - 2016-09-07 =
* Initial release