subdirectory_reserved_names WordPress Filter Hook
The subdirectory_reserved_names hook is used to filter the list of reserved names on a WordPress site with multiple subdirectories. By default, WordPress reserves the names "admin", "blog", "content", "feed", "includes", "page", "pages", "search", "statistics", "styles", and "xmlrpc" for use as subdirectories. This hook allows you to add or remove reserved names from that list.
apply_filters( 'subdirectory_reserved_names', string[] $subdirectory_reserved_names ) #
Filters reserved site names on a sub-directory Multisite installation.
Parameters
- $subdirectory_reserved_names
(string[])Array of reserved names.
Source
Changelog
Version | Description |
---|---|
4.4.0 | 'wp-admin', 'wp-content', 'wp-includes', 'wp-json', and 'embed' were added to the reserved names list. |
3.0.0 | Introduced. |