-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
executable file
·345 lines (314 loc) · 12.9 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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
<?php
/**
* Temos que falar sobre isso functions and definitions.
*
*/
//function cti_custom_content_width() {
// return '1040';
//}
//add_filter( 'coletivo_content_width', 'cti_custom_content_width' );
function cti_widgets_init() {
register_sidebar( array(
'name' =>__( 'Widget Bottom 1', 'tainacan' ),
'id' => 'sidebar-3',
'description' => __( 'Appears at the bottom of the content on posts and pages.', 'tainacan' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h4 class="widget-title">',
'after_title' => '</h4>',
) );
register_sidebar( array(
'name' => __( 'Widget Bottom 2', 'tainacan' ),
'id' => 'sidebar-4',
'description' => __( 'Appears at the bottom of the content on posts and pages.', 'tainacan' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h4 class="widget-title">',
'after_title' => '</h4>',
) );
register_sidebar( array(
'name' => __( 'Widget Bottom 3', 'tainacan' ),
'id' => 'sidebar-5',
'description' => __( 'Appears at the bottom of the content on posts and pages.', 'tainacan' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h4 class="widget-title">',
'after_title' => '</h4>',
) );
}
add_action( 'widgets_init', 'cti_widgets_init' );
add_image_size( 'orbit-custom', 1040, 480, true );
// Altera a função do footer, originalmente no arquivo inc/template-tags.php
if ( ! function_exists( 'onepress_footer_site_info' ) ) {
/**
* Add Copyright and Credit text to footer
* @since 1.1.3
*/
function coletivo_footer_site_info()
{
?>
<div class="row site-credits">
<div class="col-sm-6 sponsor">
<br />
Este site foi apoiado pelo<br /><a class="logo-sabin" rel="license" href="http://institutosabin.org.br" target="_blank" alt="Instituto Sabin">Instituto Sabin</a>
</div>
<div class="col-sm-6 credits">
<?php printf(esc_html__('Desenvolvido pela %1$s com %2$s', 'coletivo'), '<a class="logo-brasa" href="' . esc_url('https://brasa.art.br', 'coletivo') . '">Brasa</a>', '<a class="logo-wp" href="' . esc_url('https://br.wordpress.org', 'coletivo') . '"><i class="fa fa-wordpress" aria-hidden="true"></i></a>'); ?>
</div>
</div>
<?php
}
}
add_action( 'coletivo_footer_site_info', 'coletivo_footer_site_info' );
/**
* Hook to add custom section before feature section
*
* @see wp-content/themes/onepress/template-frontpage.php
*/
function add_custom_section_tqfsi(){
$coletivo_tqfsi_id = get_theme_mod( 'coletivo_tqfsi_id', esc_html__('tqfsi', 'coletivo') );
$coletivo_tqfsi_disable = get_theme_mod( 'coletivo_tqfsi_disable' ) == 1 ? true : false;
$coletivo_tqfsi_title = get_theme_mod( 'coletivo_tqfsi_title', esc_html__('Seção TQFSI', 'coletivo' ));
$coletivo_tqfsi_subtitle = get_theme_mod( 'coletivo_tqfsi_subtitle', esc_html__('Section subtitle', 'coletivo' ));
$coletivo_tqfsi_more_link = get_theme_mod( 'coletivo_tqfsi_more_link', '#' );
$coletivo_tqfsi_more_text = get_theme_mod( 'coletivo_tqfsi_more_text', esc_html__('More', 'coletivo' ));
$desc = get_theme_mod( 'coletivo_tqfsi_desc' );
if ( coletivo_is_selective_refresh() ) {
$disable = false;
}
if ( ! $coletivo_tqfsi_disable ) :
if ( ! coletivo_is_selective_refresh() ){ ?>
<section id="<?php if ( $coletivo_tqfsi_id != '' ) echo $coletivo_tqfsi_id; ?>" <?php do_action( 'coletivo_section_atts', 'coletivo' ); ?> class="<?php echo esc_attr( apply_filters( 'coletivo_section_class', 'section-tqfsi section-padding onepage-section', 'coletivo' ) ); ?>">
<?php } ?>
<?php do_action( 'coletivo_section_before_inner', 'coletivo' ); ?>
<div class="container">
<?php if ( $coletivo_tqfsi_title || $coletivo_tqfsi_subtitle || $desc ) { ?>
<div class="section-title-area">
<?php if ( $coletivo_tqfsi_subtitle != '' ) echo '<h5 class="section-subtitle">' . esc_html( $coletivo_tqfsi_subtitle ) . '</h5>'; ?>
<?php if ( $coletivo_tqfsi_title != '' ) echo '<h2 class="section-title">' . esc_html( $coletivo_tqfsi_title ) . '</h2>'; ?>
<?php if ( $desc ) {
echo '<div class="section-desc">' . apply_filters( 'the_content', wp_kses_post( $desc ) ) . '</div>';
} ?>
</div>
<?php } ?>
<?php if ( $coletivo_tqfsi_more_link != '' ) { ?>
<div class="more-link">
<a class="btn btn-theme-primary btn-lg" href="<?php echo esc_url($coletivo_tqfsi_more_link) ?>"><?php if ( $coletivo_tqfsi_more_text != '' ) echo esc_html( $coletivo_tqfsi_more_text ); ?></a>
</div>
<?php } ?>
</div>
<?php do_action( 'coletivo_section_after_inner', 'tainacan' ); ?>
<?php if ( ! coletivo_is_selective_refresh() ){ ?>
</section>
<?php } ?>
<?php endif;
wp_reset_query();
}
add_action( 'coletivo_before_section_hero', 'add_custom_section_tqfsi' );
function add_custom_section_tqfsi_search(){
$coletivo_tqfsi_search_disable = get_theme_mod( 'coletivo_tqfsi_search_disable' ) == 1 ? true : false;
$coletivo_tqfsi_search_title = get_theme_mod( 'coletivo_tqfsi_search_title', esc_html__('Search', 'coletivo' ));
if ( coletivo_is_selective_refresh() ) {
$disable = false;
}
if ( ! $coletivo_tqfsi_search_disable ) :
if ( ! coletivo_is_selective_refresh() ){ ?>
<section id="tqfsi-search" <?php do_action( 'coletivo_section_atts', 'coletivo' ); ?> class="<?php echo esc_attr( apply_filters( 'coletivo_section_class', 'section-tqfsi-search section-padding onepage-section', 'coletivo' ) ); ?>">
<?php } ?>
<?php do_action( 'coletivo_section_before_inner', 'coletivo' ); ?>
<div class="container">
<div class="section-content">
<div class="row">
<?php if ( $coletivo_tqfsi_search_title ) { ?>
<div class="section-title-area">
<?php if ( $coletivo_tqfsi_search_title != '' ) echo '<h2 class="section-title search-title">' . esc_html( $coletivo_tqfsi_search_title ) . '</h2>'; ?>
</div>
<?php } ?>
<div class="col-sm-12 home-search">
<?php get_search_form(); ?>
</div>
</div>
</div>
</div>
<?php do_action( 'coletivo_section_after_inner', 'tainacan' ); ?>
<?php if ( ! coletivo_is_selective_refresh() ){ ?>
</section>
<?php } ?>
<?php endif;
}
add_action( 'coletivo_after_section_features', 'add_custom_section_tqfsi_search' );
function coletivo_customize_after_register( $wp_customize ) {
/*------------------------------------------------------------------------*/
/* TQFSI
/*------------------------------------------------------------------------*/
$wp_customize->add_section( 'coletivo_tqfsi_settings' ,
array(
'priority' => 0,
'capability' => 'edit_theme_options',
'theme_supports' => '',
'title' => esc_html__( 'Seção TQFSI', 'coletivo' ),
'description' => '',
'panel' => 'theme_options',
)
);
// Show Content
$wp_customize->add_setting( 'coletivo_tqfsi_disable',
array(
'sanitize_callback' => 'coletivo_sanitize_checkbox',
'default' => '',
)
);
$wp_customize->add_control( 'coletivo_tqfsi_disable',
array(
'type' => 'checkbox',
'label' => esc_html__('Hide this section?', 'coletivo'),
'section' => 'coletivo_tqfsi_settings',
'description' => esc_html__('Check this box to hide this section.', 'coletivo'),
)
);
// Section ID
$wp_customize->add_setting( 'coletivo_tqfsi_id',
array(
'sanitize_callback' => 'coletivo_sanitize_text',
'default' => esc_html__('tqfsi', 'coletivo'),
)
);
$wp_customize->add_control( 'coletivo_tqfsi_id',
array(
'label' => esc_html__('Section ID:', 'coletivo'),
'section' => 'coletivo_tqfsi_settings',
'description' => esc_html__( 'The section id, we will use this for link anchor.', 'coletivo' )
)
);
// Title
$wp_customize->add_setting( 'coletivo_tqfsi_title',
array(
'sanitize_callback' => 'sanitize_text_field',
'default' => esc_html__('Sobre a TQFSI', 'coletivo'),
)
);
$wp_customize->add_control( 'coletivo_tqfsi_title',
array(
'label' => esc_html__('Section Title', 'coletivo'),
'section' => 'coletivo_tqfsi_settings',
'description' => '',
)
);
// Sub Title
$wp_customize->add_setting( 'coletivo_tqfsi_subtitle',
array(
'sanitize_callback' => 'sanitize_text_field',
'default' => esc_html__('Section subtitle', 'coletivo'),
)
);
$wp_customize->add_control( 'coletivo_tqfsi_subtitle',
array(
'label' => esc_html__('Section Subtitle', 'coletivo'),
'section' => 'coletivo_tqfsi_settings',
'description' => '',
)
);
// Description
$wp_customize->add_setting( 'coletivo_tqfsi_desc',
array(
'sanitize_callback' => 'coletivo_sanitize_text',
'default' => '',
)
);
$wp_customize->add_control( new coletivo_Editor_Custom_Control(
$wp_customize,
'coletivo_tqfsi_desc',
array(
'label' => esc_html__('Section Description', 'coletivo'),
'section' => 'coletivo_tqfsi_settings',
'description' => '',
)
));
// More Button
$wp_customize->add_setting( 'coletivo_tqfsi_more_link',
array(
'sanitize_callback' => 'esc_url',
'default' => '#',
)
);
$wp_customize->add_control( 'coletivo_tqfsi_more_link',
array(
'label' => esc_html__('More tqfsi button link', 'coletivo'),
'section' => 'coletivo_tqfsi_settings',
'description' => esc_html__( 'It should be your blog page link.', 'coletivo' )
)
);
$wp_customize->add_setting( 'coletivo_tqfsi_more_text',
array(
'sanitize_callback' => 'sanitize_text_field',
'default' => esc_html__('More', 'coletivo'),
)
);
$wp_customize->add_control( 'coletivo_tqfsi_more_text',
array(
'label' => esc_html__('More Button', 'coletivo'),
'section' => 'coletivo_tqfsi_settings',
'description' => '',
)
);
// Show Search
$wp_customize->add_setting( 'coletivo_tqfsi_search_disable',
array(
'sanitize_callback' => 'coletivo_sanitize_checkbox',
'default' => '',
)
);
$wp_customize->add_control( 'coletivo_tqfsi_search_disable',
array(
'type' => 'checkbox',
'label' => esc_html__('Hide the TQFSI search section?', 'coletivo'),
'section' => 'coletivo_tqfsi_settings',
'description' => esc_html__('Check this box to hide this section.', 'coletivo'),
)
);
// Search Title
$wp_customize->add_setting( 'coletivo_tqfsi_search_title',
array(
'sanitize_callback' => 'sanitize_text_field',
'default' => esc_html__('Search', 'coletivo'),
)
);
$wp_customize->add_control( 'coletivo_tqfsi_search_title',
array(
'label' => esc_html__('Search', 'coletivo'),
'section' => 'coletivo_tqfsi_settings',
'description' => '',
)
);
}
add_action( 'coletivo_customize_after_register', 'coletivo_customize_after_register' );
function coletivo_customizer_child_partials( $wp_customize ) {
// Abort if selective refresh is not available.
if ( ! isset( $wp_customize->selective_refresh ) ) {
return;
}
$selective_refresh_keys = array(
// section tqfsi
array(
'id' => 'tqfsi',
'selector' => '.section-tqfsi',
'settings' => array(
'coletivo_tqfsi_title',
'coletivo_tqfsi_subtitle',
'coletivo_tqfsi_desc',
'coletivo_tqfsi_more_text',
'coletivo_tqfsi_more_link',
),
),
// section tqfsi search
array(
'id' => 'tqfsi-search',
'selector' => '.section-tqfsi-search',
'settings' => array(
'coletivo_tqfsi_search_title',
'coletivo_tqfsi_search_disable',
),
)
);
}
add_action( 'customize_register', 'coletivo_customizer_child_partials', 50 );