-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.conf.php
More file actions
37 lines (31 loc) · 1003 Bytes
/
theme.conf.php
File metadata and controls
37 lines (31 loc) · 1003 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
<?php
/*
Theme Name: TemaSarap
Theme URI: http://eggoez.com/flatpress
Description: Simple Themes for blog FlatPress use BootStrap. Style Yeti by BootSwatch.
Version: 1.01;
Author: eggoez
Author URI: http://goez.my.id
*/
$theme['name'] = 'TemaSarap';
$theme['author'] = 'goez';
$theme['www'] = 'http://goez.my.id';
$theme['description'] = 'Simple Themes for blog FlatPress use BootStrap. Style Yeti by '.
'BootSwatch.';
$theme['version'] = 1.01;
$theme['style_def'] = 'style.css';
$theme['style_admin'] = 'admin.css';
remove_filter('admin_head', 'admin_head_action');
function theme_bs_head() {
global $blog_config;
echo "<!-- TemaSarap Head -->\n";
echo '<script src="' . THEMES_DIR .
$blog_config['THEME'] .
'TemaSarap/res/bootstrap.min.js" type="text/javascript"></script>';
echo "\n<!-- EndOf TemaSarap Head -->\n";
}
add_action('wp_head', 'theme_bs_head');
register_widgetset('right');
register_widgetset('left');
register_widgetset('menubar');
?>