Skip to content

Commit c2cc584

Browse files
committed
Add kirki framework as plugin #14
1 parent 3b4a8c3 commit c2cc584

File tree

267 files changed

+60065
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

267 files changed

+60065
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ themes/wp-indigo/ # → Root of your theme
4848
├── package.json # → Node.js dependencies and scripts
4949
├── inc/ # → Theme functions
5050
│ ├── classes/ # → Custom PHP classes
51+
│ ├── kirki/ # → Kirki Customization framework
5152
│ ├── customizer.php # → All codes related to WordPress Customizer (We use Kirki Framework)
5253
│ ├── template-functions.php # → Custom template tags & tweaks
5354
│ └── setup.php # → Theme Setup

functions.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
require get_template_directory() . '/inc/setup.php';
44

5+
require get_template_directory() . '/inc/kirki/kirki.php';
6+
57
require get_template_directory() . '/inc/customizer.php';
68

79
require get_template_directory() . '/inc/template-functions.php';

inc/kirki/.jhintrc

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"boss": true,
3+
"curly": true,
4+
"eqeqeq": true,
5+
"eqnull": true,
6+
"esversion": 6,
7+
"expr": true,
8+
"immed": true,
9+
"noarg": true,
10+
"nonbsp": true,
11+
"onevar": true,
12+
"quotmark": "single",
13+
"trailing": true,
14+
"undef": true,
15+
"unused": true,
16+
17+
"browser": true,
18+
19+
"globals": {
20+
"_": false,
21+
"Backbone": false,
22+
"jQuery": false,
23+
"JSON": false,
24+
"wp": false,
25+
"export": false,
26+
"module": false,
27+
"require": false
28+
}
29+
}

inc/kirki/CHANGELOG.md

Lines changed: 1276 additions & 0 deletions
Large diffs are not rendered by default.

inc/kirki/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019 Ari Stathopoulos (@aristath)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

inc/kirki/assets/images/1c.png

786 Bytes
Loading

inc/kirki/assets/images/2cl.png

866 Bytes
Loading

inc/kirki/assets/images/2cr.png

869 Bytes
Loading

inc/kirki/assets/images/3cl.png

929 Bytes
Loading

inc/kirki/assets/images/3cm.png

932 Bytes
Loading

0 commit comments

Comments
 (0)