-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
168 lines (141 loc) · 3.9 KB
/
functions.php
File metadata and controls
168 lines (141 loc) · 3.9 KB
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
156
157
158
159
160
161
162
163
164
165
166
167
168
<?php
/**
* Theme setup.
*/
function tailpress_setup() {
add_theme_support( 'title-tag' );
register_nav_menus(
array(
'primary' => __( 'Primary Menu', 'tailpress' ),
)
);
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
)
);
add_theme_support( 'post-thumbnails' );
add_theme_support( 'custom-logo' );
if ( is_admin() ) {
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', 'tailpress_setup' );
/**
* Enqueue theme assets.
*/
function tailpress_enqueue_scripts() {
$theme = wp_get_theme();
wp_enqueue_style( 'tailpress', tailpress_asset( 'css/app.css' ), array(), $theme->get( 'Version' ) );
wp_enqueue_script( 'tailpress', tailpress_asset( 'js/app.js' ), array(), $theme->get( 'Version' ) );
}
add_action( 'wp_enqueue_scripts', 'tailpress_enqueue_scripts' );
/**
* Get asset path.
*
* @param string $path Path to asset.
*
* @return string
*/
function tailpress_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 tailpress_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', 'tailpress_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 tailpress_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', 'tailpress_nav_menu_add_submenu_class', 10, 3 );
/**
* Add new image sizes.
*/
add_action( 'after_setup_theme', function () {
add_image_size( '2048x2048', 2048, 2048 );
} );
/**
* Site-wide notice
*/
add_action( 'tailpress_header', function () {
// If the $current_date is greater than the last day of the show, just return.
if ( current_time( 'Ymd' ) > '20250517' ) {
return;
}
echo '
<div class="bg-gray-800 text-gray-200 text-xs sm:text-sm py-2 lg:py-4 px-2">
<div class="flex flex-row items-center gap-x-3.5 justify-center">
<span class="font-bold">Gallery Exhibition</span>
<span class="opacity-50">/</span>
<span>April 24 ~ May 17</span>
<span class="opacity-50">/</span>
<a href="https://greygallery.ca/" target="_blank" rel="noopener" class="underline">Grey Gallery</a>
</div>
</div>
';
} );
/**
* Load ACF field groups.
*/
require_once get_template_directory() . '/inc/acf/field-groups.php';
/**
* Register ACF Options Page.
*/
if ( function_exists( 'acf_add_options_page' ) ) {
acf_add_options_page(
array(
'page_title' => __( 'Site Options', 'ebca-theme' ),
'menu_title' => __( 'Site Options', 'ebca-theme' ),
'menu_slug' => 'acf-options',
'capability' => 'edit_posts',
'redirect' => false,
)
);
}
/**
* Load custom post types.
*/
require_once get_template_directory() . '/inc/custom-post-types/collection.php';
require_once get_template_directory() . '/inc/custom-post-types/issue.php';
require_once get_template_directory() . '/inc/custom-post-types/photographer.php';