mimosafa / wp-theme-exchanger
Simple WordPress theme exchanger
1.0.0
2018-11-24 12:44 UTC
Requires
- php: >=5.6
Requires (Dev)
- doctrine/instantiator: 1.0.*
- myclabs/deep-copy: 1.7.*
- phpdocumentor/reflection-docblock: 3.*
- phpunit/php-token-stream: 1.4.*
- phpunit/phpunit: ^5.7
- symfony/yaml: 3.4.*
This package is auto-updated.
Last update: 2025-03-25 09:11:25 UTC
README
Simple WordPress theme exchanger.
Installation
composer require mimosafa\wp-theme-exchanger
Example
Note: This library will not work after the setup_theme
action.
<?php // In your plugin file require_once( 'path/to/vendor/autoload.php' ); add_action( 'plugins_loaded', function() { /** * Theme slug * * @var string $extra_theme */ $extra_theme = 'awesome-theme'; $exchanger = new WP_Theme_Exchanger\Exchanger( $extra_theme ); if ( $_SERVER['REQUEST_URI'] === '/awesome' ) { $exchanger->on(); } } );