-
Notifications
You must be signed in to change notification settings - Fork 6
/
functions.php
50 lines (45 loc) · 2.36 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
<?php
/* ==========================================================================
Core
- Wordpress backend and admin helpers
========================================================================== */
// require_once('functions/core/add-editor-formats.php');
// require_once('functions/core/add-image-sizes.php');
// require_once('functions/core/add-svg-upload-support.php');
// require_once('functions/core/add-vcard-support.php');
// require_once('functions/core/remove-emoji-scripts.php');
// require_once('functions/core/remove-wp-embed.php');
// require_once('functions/core/remove-json-api-scripts.php');
// require_once('functions/core/remove-wp-xml-scripts.php');
// require_once('functions/core/remove-default-editor.php');
// require_once('functions/core/remove-gutenberg-styles.php');
/* ==========================================================================
Template
- Frontend Specific helpers
========================================================================== */
// require_once('functions/template/get-template-partial.php');
// require_once('functions/template/limit-chars.php');
// require_once('functions/template/limit-words.php');
// require_once('functions/template/slugify.php');
// require_once('functions/template/check-if-ajax.php');
// require_once('functions/template/get-file-type.php');
// require_once('functions/template/pretty-print.php');
/* ==========================================================================
Plugin
- Plugin only helpers
========================================================================== */
// require_once('functions/plugin/yoast-seo.php');
/* ==========================================================================
Custom
- Site specific custom actions or util functions
========================================================================== */
/* ==========================================================================
Shortcodes
- Custom shortcodes from the /shortcodes directory
========================================================================== */
/* ==========================================================================
Required
- DO NOT REMOVE - required to setup the script enqueuing
========================================================================== */
require_once('functions/required.php');
?>