Download the PHP package rarst/toolbar-theme-switcher without Composer
On this page you can find all versions of the php package rarst/toolbar-theme-switcher. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rarst/toolbar-theme-switcher
More information about rarst/toolbar-theme-switcher
Files in rarst/toolbar-theme-switcher
Package toolbar-theme-switcher
Short Description Adds WordPress toolbar menu that allows users to switch theme for themselves
License MIT
Homepage https://github.com/Rarst/toolbar-theme-switcher
Informations about the package toolbar-theme-switcher
Toolbar Theme Switcher — for WordPress
Plugin provides toolbar (admin bar) menu to quickly switch between available themes.
Theme choice is individual for user, saved in cookies and doesn't affect current theme of the site.
Plugin is multisite-aware — it will only list themes allowed for site and save choice for each site separately.
Installation
Download plugin archive from releases section.
Or install in plugin directory via Composer:
composer create-project rarst/toolbar-theme-switcher --no-dev
Frequently Asked Questions
I switched to a broken theme!
You can reset via special URL parameter example.com?tts_reset
or by clearing browser’s cookies for the site.
I don't want all themes to show...
Filter tts_allowed_themes
and unset unwanted themes.
Example code (removes Twenty Ten theme from the list):
Who can see and use the menu?
Users with switch_themes
capability (administrators by default).
Filter tts_capability
(capability name) or tts_can_switch_themes
(boolean) to customize.
I don't want theme name in toolbar? | I want something else in toolbar?
Filter tts_root_title
to control what it says.
I have a lot of themes and it's becoming sluggish...
Plugin needs to build full list of available themes, which isn't typically needed on each page load and can be relatively slow with a lot of disk access.
When using Object Cache, caching theme data in WordPress can be enabled via:
Since it doesn't handle invalidation (will need to wait or flush cache when themes are added/removed), plugin isn't enabling it and leaves choice up to the user.