-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
275 lines (123 loc) · 5.07 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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<?php
function agatamac_enqueue_styles() {
$parent_style = 'twentyseventeen-style';
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'agatamac-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', 'agatamac_enqueue_styles' );
/* Página de opções */
if( function_exists('acf_add_options_page') ) {
acf_add_options_page(array(
'page_title' => 'Seguros',
'menu_title' => 'Seguros',
'menu_slug' => 'extra-settings',
// 'capability' => 'edit_posts',
'redirect' => false,
'icon_url' => 'dashicons-megaphone',
'position' => 2
));
}
/* Retorna o URI do tema filho*/
function get_template_directory_child() {
$directory_template = get_template_directory_uri();
$directory_child = str_replace('twentyseventeen', '', $directory_template) . 'agatamac';
return $directory_child;
}
/* Tira o termo prefixo - como 'Categoria: ' - antes do título da vitrine */
function agatamac_archive_title( $title ) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>';
} elseif ( is_post_type_archive() ) {
$title = post_type_archive_title( '', false );
} elseif ( is_tax() ) {
$title = single_term_title( '', false );
}
return $title;
}
add_filter( 'get_the_archive_title', 'agatamac_archive_title' );
/* Customizando a página de login */
/* Logo */
function agatamac_login_logo() { ?>
<style type="text/css">
#login h1 a, .login h1 a {
background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/site-login-logo.png);
height:109px;
width:123px;
background-size: 109px 123px;
background-repeat: no-repeat;
padding-bottom: 30px;
}
</style>
<?php }
add_action( 'login_enqueue_scripts', 'agatamac_login_logo' );
/* Link */
function agatamac_login_logo_url() {
return home_url();
}
add_filter( 'login_headerurl', 'agatamac_login_logo_url' );
/* Link Title */
function agatamac_login_logo_url_title() {
return 'Agata Mac | Consultoria e Soluções em Seguro Empresarial';
}
add_filter( 'login_headertitle', 'agatamac_login_logo_url_title' );
/* Mensagem */
function agatamac_login_message(){
return '<h1 style="text-align:center;">Agata Mac</h1><br/><h3 style="text-align:center;">Soluções em Seguro Empresarial</h3>';
}
add_filter( 'login_message', 'agatamac_login_message' );
/* Botão */
function agatamac_login_stylesheet() {
wp_enqueue_style( 'custom-login', get_stylesheet_directory_uri() . '/style-login.css' );
// wp_enqueue_script( 'custom-login', get_stylesheet_directory_uri() . '/style-login.js' );
}
add_action( 'login_enqueue_scripts', 'agatamac_login_stylesheet' );
/* Admin Panel Style */
function my_admin_theme_style() {
wp_enqueue_style('my-admin-style', get_stylesheet_directory_uri() . '/style-login.css');
}
add_action('admin_enqueue_scripts', 'my_admin_theme_style');
/* Adicionando página ao Dashboard */
function add_custom_dashboard_widgets() {
wp_add_dashboard_widget(
'agatamac_dashboard_widget', // Widget slug.
'Agata Mac | Soluções em Seguro Empresarial', // Title.
'custom_dashboard_widget_content' // Display function.
);
}
add_action( 'wp_dashboard_setup', 'add_custom_dashboard_widgets' );
/* Create the function to output the contents of your Dashboard Widget. */
function custom_dashboard_widget_content() {
echo '
<img src="' . get_stylesheet_directory_uri() . '/images/logo.png)" title="Agata Mac | Soluções em Seguros para Empresas" alt""Agata Mac | Soluções em Seguros para Empresas" height="50" width="auto" style="height:auto;width:80%;padding:10%"/>
<p>Através desse painel é possível incluir páginas, posts e realizar uma série de outras edições de conteúdo.</p>
<p>Em caso de dúvidas, entre em contato com a Djament Comunicação através do email <a href="mailto:[email protected]" title="Enviar email para Djament">[email protected]</a>. Obrigado!</p>
';
}
//Logo no Menu Lateral do Dashboard Administrativo
function agatamac_custom_logo() {
echo '
<style type="text/css">
#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
background-image: url(' . get_bloginfo('stylesheet_directory') . '/images/custom-logo.png) !important;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
color:rgba(0, 0, 0, 0);
}
#wpadminbar #wp-admin-bar-wp-logo.hover > .ab-item .ab-icon {
background-position: 0 0;
}
</style>
';
}
//hook into the administrative header output
add_action('wp_before_admin_bar_render', 'agatamac_custom_logo');
?>