2023-06-15 16:32:27 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2023-06-26 19:59:56 +02:00
|
|
|
Theme Name: Rainbow Theme
|
2023-06-26 20:01:55 +02:00
|
|
|
Original Author: Stealth Settings http://www.stealthsettings.com (ported to FP by Marcoverga, modified tp Rainbow Theme by DeltaLima in 2023)
|
2023-06-26 19:59:56 +02:00
|
|
|
Author URI: https://deltalima.org
|
|
|
|
Description: 2-column theme, with orange/transparent look and widget bar on the left with colorful background (stolen from https://websitesetup.org/bootstrap-tutorial-for-beginners/)
|
|
|
|
Version: 0.9
|
2023-06-15 16:32:27 +02:00
|
|
|
FP Version Author: Marcoverga
|
|
|
|
FP Version URI: http://marcoverga86.netsons.org
|
2023-06-26 19:59:56 +02:00
|
|
|
Forked by DeltaLima in 2023 to "Rainbow Theme"
|
2023-06-15 16:32:27 +02:00
|
|
|
*/
|
|
|
|
|
2023-06-26 19:59:56 +02:00
|
|
|
$theme['name'] = 'Rainbow Theme';
|
|
|
|
$theme['author'] = 'DeltaLima';
|
|
|
|
$theme['www'] = 'https://deltalima.org';
|
|
|
|
$theme['version'] = 0.9;
|
2023-06-15 16:32:27 +02:00
|
|
|
$theme['style_def'] = 'style.css';
|
|
|
|
$theme['style_admin'] = 'admin.css';
|
|
|
|
|
|
|
|
// Other theme settings
|
|
|
|
// overrides default tabmenu and panel layout
|
|
|
|
remove_filter('admin_head', 'admin_head_action');
|
|
|
|
|
|
|
|
// register widgetsets
|
|
|
|
//register_widgetset('right');
|
|
|
|
register_widgetset('left');
|
|
|
|
?>
|