-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.conf.php
More file actions
43 lines (32 loc) · 917 Bytes
/
theme.conf.php
File metadata and controls
43 lines (32 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/*
Theme Name: TemaBagus
Description: bagus bogus themes otak atik matuk
Version: 1 Stabil
Author: toenk
Author URI: http://eggoez.com/flatpress
*/
$theme['name'] = ' bagus';
$theme['author'] = 'toenk';
$theme['www'] = 'http://goez.my.id';
$theme['description'] = 'Otak Atik Matuk';
$theme['version'] = 1;
$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');
function theme_bagus_head() {
global $blog_config;
echo "<!-- Theme Head -->\n";
echo '<script src="' . THEMES_DIR .
$blog_config['THEME'] .
'bagus/res/top.js" type="text/javascript"></script>';
echo "\n<!-- EndOf Theme Head -->\n";
}
// register widgetsets
register_widgetset('right');
register_widgetset('left');
register_widgetset('menubar');
?>