-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
36 lines (26 loc) · 1.11 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
<?php
/**
* @package BuddyBoss Child
* The parent theme functions are located at /buddyboss-theme/inc/theme/functions.php
* This theme's function are in /functions/
* For more info: https://developer.wordpress.org/themes/basics/theme-functions/
*/
// Theme setup options
require_once(get_stylesheet_directory().'/functions/theme-setup.php');
// bfcom-specific functions
require_once(get_stylesheet_directory().'/functions/bfc-functions.php');
// bfcom-specific widgets
require_once(get_stylesheet_directory().'/functions/widgets.php');
// bfcom-specific like functions
require_once(get_stylesheet_directory().'/functions/like-functions.php');
// bfcom-specific activity-action functions
require_once(get_stylesheet_directory().'/functions/bfc-activity-actions.php');
// bfcom-specific text editor functions
require_once(get_stylesheet_directory().'/functions/bfc-editor.php');
// bfcom-specific docs functions
if ( class_exists('BP_Docs')) {
require_once(get_stylesheet_directory().'/functions/bfc-docs.php');
// bfnet-specific functions
require_once(get_stylesheet_directory().'/functions/bfnet-functions.php');
}
?>