0+
March 17, 2013
April 6, 2011
This plugin lock the site at specific theme. You can activate any theme you want, the site will look like the locked theme.
Into the code of plugin there are 3 php variables.
More information can be found at
anytheme-lock-theme-wordpress-plugin
To install, simple extract the ‘anytheme-lock-theme.php’ file into your ‘wp-content/plugins/’ directory and activate the plugin.
You should make sure your lock theme exist.
Just for one and the only reason:
Because this plugin is made to help developers to lock the design of the WP site, and the end user cannot change this design very easy.
In plugin code, by default the locked theme is Twenty Ten
<?php
$anytheme_lock_theme = 'Twenty Ten';
$anytheme_lock_stylesheet = 'twentyten';
$anytheme_lock_template = 'twentyten';
?>
If you want to set another lock theme you just have to modify these vars.
<?php
$anytheme_lock_theme = 'The name of new lock theme';
$anytheme_lock_stylesheet = 'folder-name-of-theme-from-wp-content/themes';
$anytheme_lock_template = 'folder-name-of-theme-from-wp-content/themes';
?>
*** usually the template and stylesheet have the same name
No changelog information