Beskriuwing
WP CHOOSE YOUR THEME, let to select an avaiable theme to your visitors. In your template, for example in sidebar.php, insert: <?php wp_chooseyourtheme(); ?> and a combo menu list shows the themes avaiable. When a your visitor click on item, the theme is changed.
For defautl all themes are shows. Use Admin configuration Appearance -> WP Choose Your Theme to hidden some themes.
Arguments
You can set args mode in:
COMBO MENU
<?php wp_chooseyourtheme(); ?> for combo menu or
<?php wp_chooseyourtheme("mode=menu"); ?>
<select class="wpcyt_combo">
<option>Theme name 1</option>
<option>Theme name 2</option>
<option>Theme name ...</option>
</select>
LIST
<?php wp_chooseyourtheme("mode=list"); ?> for list.
<ul class="wpcyt_list">
<li class="theme-name-1"><a href="..."><span>Theme name 1</span></a></li>
<li class="theme-name-2 selected"><a href="..."><span>Theme name 2</span></a></li>
<li class="theme-name-..."><a href="..."><span>Theme name ...</span></a></li>
</ul>
ROLL
<?php wp_chooseyourtheme("mode=roll"); ?> for roll.
<div class="wpcyt_roll">
<a class="next-theme" href="#"><span>Next Theme</span></a>
</div>
Related Links
Thanks
Ynstallaasje
- Upload the entire content of plugin archive to your
/wp-content/plugins/directory,
so that everything will remain in a/wp-content/plugins/wp-chooseyourtheme/folder - Activate the plugin through the ‘Plugins’ menu in WordPress (deactivate and reactivate if you’re upgrading).
- Open the plugin configuration page, which is located under
Appearance -> WP Choose Your Theme - Select the Themes you want to make hidden
- Insert in your template php
<?php wp-chooseyourtheme(); ?>function - Done. Enjoy.
Resinsjes
D’r binne gjin resinsjes foar dizze plugin.
Meiwurkers & amp; Untwikkelders
“WP CHOOSE YOUR THEME” is iepen boarne software. De folgjende minsken hawwe bydroegen oan dizze plugin.
MeiwurkersOersette “WP CHOOSE YOUR THEME” yn jo taal.
Ynteressearre yn ûntwikkeling?
Blêdzje troch de koade , besjoch de SVN-repository , of abonnearje op it ûntwikkelingslogboek troch RSS .
Feroaringslog
History release:
* 0.6 Rev HTML output for list and roll mode: add slug theme name class
* 0.5 Add Admin in backend under Appearance. Rev code and avoid Javascript.
* 0.2 Rev
* 0.1 First release