-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
138 lines (113 loc) · 2.95 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
<?php
/**
* Theme setup.
*/
function realtyone_setup()
{
add_theme_support('title-tag');
register_nav_menus(
array(
'primary' => __('Primary Menu', 'realtyone'),
)
);
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
)
);
add_theme_support('custom-logo');
add_theme_support('post-thumbnails');
add_theme_support('align-wide');
add_theme_support('wp-block-styles');
add_theme_support('editor-styles');
add_editor_style('css/editor-style.css');
}
add_action('after_setup_theme', 'realtyone_setup');
/**
* Enqueue theme assets.
*/
function realtyone_enqueue_scripts()
{
$theme = wp_get_theme();
$version="1.0.3";
wp_enqueue_style('realtyone', realtyone_asset('css/app.css'), array(), $version);
wp_enqueue_script('realtyone', realtyone_asset('js/app.js'), array(), $version);
}
add_action('wp_enqueue_scripts', 'realtyone_enqueue_scripts');
/**
* Get asset path.
*
* @param string $path Path to asset.
*
* @return string
*/
function realtyone_asset($path)
{
if (wp_get_environment_type() === 'production') {
return get_stylesheet_directory_uri() . '/' . $path;
}
return add_query_arg('time', time(), get_stylesheet_directory_uri() . '/' . $path);
}
/**
* Adds option 'li_class' to 'wp_nav_menu'.
*
* @param string $classes String of classes.
* @param mixed $item The current item.
* @param WP_Term $args Holds the nav menu arguments.
*
* @return array
*/
function realtyone_nav_menu_add_li_class($classes, $item, $args, $depth)
{
if (isset($args->li_class)) {
$classes[] = $args->li_class;
}
if (isset($args->{"li_class_$depth"})) {
$classes[] = $args->{"li_class_$depth"};
}
return $classes;
}
add_filter('nav_menu_css_class', 'realtyone_nav_menu_add_li_class', 10, 4);
/**
* Adds option 'submenu_class' to 'wp_nav_menu'.
*
* @param string $classes String of classes.
* @param mixed $item The current item.
* @param WP_Term $args Holds the nav menu arguments.
*
* @return array
*/
function realtyone_nav_menu_add_submenu_class($classes, $args, $depth)
{
if (isset($args->submenu_class)) {
$classes[] = $args->submenu_class;
}
if (isset($args->{"submenu_class_$depth"})) {
$classes[] = $args->{"submenu_class_$depth"};
}
return $classes;
}
add_filter('nav_menu_submenu_css_class', 'realtyone_nav_menu_add_submenu_class', 10, 3);
$themePages = array('bio', 'testimonials', 'sellers', 'buyers', 'listings');
foreach ($themePages as $title) {
if(empty(get_page_by_title($title, 'OBJECT', 'page'))){
$page_id = wp_insert_post(
array(
'comment_status' => 'close',
'ping_status' => 'close',
'post_author' => 1,
'post_title' => $title,
'post_name' => $title,
'post_status' => 'publish',
'post_content' => $title == "listings" ? '[es_my_listing][es_search_form]' : '',
'post_type' => 'page'
)
);
}
}
$pgthemes = json_decode(file_get_contents(get_stylesheet_directory() . "/config.json"), true);