-
Notifications
You must be signed in to change notification settings - Fork 2
/
functions.php
155 lines (115 loc) · 5.67 KB
/
functions.php
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
////////////////////////////////////////////////////////////////////
// Theme Information
////////////////////////////////////////////////////////////////////
$themename = "MaterialPress";
$developer_uri = "http://simonsickle.com";
$shortname = "MP";
$version = '0.1';
//load_theme_textdomain( 'MaterialPress', get_template_directory() . '/languages' );
////////////////////////////////////////////////////////////////////
// include Theme-options.php for Admin Theme settings
////////////////////////////////////////////////////////////////////
include 'theme-options.php';
////////////////////////////////////////////////////////////////////
// Enqueue Styles (normal style.css and bootstrap.css)
////////////////////////////////////////////////////////////////////
function MaterialPress_theme_stylesheets()
{
// Bootstrap
wp_register_style('bootstrap.min.css', get_template_directory_uri() . '/css/bootstrap.min.css', array(), '1', 'all' );
wp_enqueue_style( 'bootstrap.min.css');
wp_enqueue_style( 'stylesheet', get_stylesheet_uri(), array(), '1', 'all' );
// Material CSS w/ fonts
wp_register_style('material-wfont.min.css', get_template_directory_uri() . '/css/material-wfont.min.css', array(), '1', 'all' );
wp_enqueue_style( 'material-wfont.min.css');
wp_enqueue_style( 'stylesheet', get_stylesheet_uri(), array(), '1', 'all' );
// Material Ripples
wp_register_style('ripples.min.css', get_template_directory_uri() . '/css/ripples.min.css', array(), '1', 'all' );
wp_enqueue_style( 'ripples.min.css');
wp_enqueue_style( 'stylesheet', get_stylesheet_uri(), array(), '1', 'all' );
}
add_action('wp_enqueue_scripts', 'MaterialPress_theme_stylesheets');
//Editor Style
add_editor_style('css/editor-style.css');
////////////////////////////////////////////////////////////////////
// Register Bootstrap JS with jquery
////////////////////////////////////////////////////////////////////
function MaterialPress_theme_js()
{
global $version;
// Bootstrap JS
wp_enqueue_script('bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js ',array( 'jquery' ),$version,false);
// Material JS
wp_enqueue_script('material', get_template_directory_uri() . '/js/material.min.js ',array( 'jquery' ),$version,false);
// Ripples JS
wp_enqueue_script('ripples', get_template_directory_uri() . '/js/ripples.min.js ',array( 'jquery' ),$version,false);
}
add_action('wp_enqueue_scripts', 'MaterialPress_theme_js');
////////////////////////////////////////////////////////////////////
// Register Custom Navigation Walker include custom menu widget to use walkerclass
////////////////////////////////////////////////////////////////////
require_once('lib/wp_bootstrap_navwalker.php');
require_once('lib/bootstrap-custom-menu-widget.php');
////////////////////////////////////////////////////////////////////
// Register Menus
////////////////////////////////////////////////////////////////////
register_nav_menus(
array(
'main_menu' => 'Main Menu',
'footer_menu' => 'Footer Menu'
)
);
////////////////////////////////////////////////////////////////////
// Register the Sidebar(s)
////////////////////////////////////////////////////////////////////
register_sidebar(
array(
'name' => 'Right Sidebar',
'id' => 'right-sidebar',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
register_sidebar(
array(
'name' => 'Left Sidebar',
'id' => 'left-sidebar',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
////////////////////////////////////////////////////////////////////
// Register hook and action to set Main content area col-md- width based on sidebar declarations
////////////////////////////////////////////////////////////////////
add_action( 'devdmbootstrap3_main_content_width_hook', 'devdmbootstrap3_main_content_width_columns');
function devdmbootstrap3_main_content_width_columns () {
global $dm_settings;
$columns = '12';
if ($dm_settings['right_sidebar'] != 0) {
$columns = $columns - $dm_settings['right_sidebar_width'];
}
if ($dm_settings['left_sidebar'] != 0) {
$columns = $columns - $dm_settings['left_sidebar_width'];
}
echo $columns;
}
function devdmbootstrap3_main_content_width() {
do_action('devdmbootstrap3_main_content_width_hook');
}
////////////////////////////////////////////////////////////////////
// Add support for a featured image and the size
////////////////////////////////////////////////////////////////////
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size(300,300, true);
////////////////////////////////////////////////////////////////////
// Adds RSS feed links to for posts and comments.
////////////////////////////////////////////////////////////////////
add_theme_support( 'automatic-feed-links' );
////////////////////////////////////////////////////////////////////
// Set Content Width
////////////////////////////////////////////////////////////////////
if ( ! isset( $content_width ) ) $content_width = 800;
?>