-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
432 lines (392 loc) · 15.4 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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
<?php
/**
* Sage includes
*
* The $sage_includes array determines the code library included in your theme.
* Add or remove files to the array as needed. Supports child theme overrides.
*
* Please note that missing files will produce a fatal error.
*
* @link https://github.com/roots/sage/pull/1042
*/
$sage_includes = [
'lib/assets.php', // Scripts and Stylesheets
'lib/blog_clean_plates.php', // Blog Clean Plates Widget
'lib/customizer.php', // Theme Customizer
'lib/extras.php', // Custom Functions
'lib/footer.php', // Footer Widget
'lib/hacklab_post2home/hacklab_post2home.php', // Hacklab Fetured Posts
'lib/library.php', // Library AS-PTA Widget
'lib/newspaper.php', // Newspaper AS-PTA Widget
'lib/see_also.php', // See also about AS-PTA Widget
'lib/setup.php', // Theme Setup
'lib/titles.php', // Page Titles
'lib/wp_bootstrap_navwalker.php', // Nav Walker Class
'lib/wrapper.php', // Theme Wrapper Class
];
foreach ($sage_includes as $file) {
if (!$filepath = locate_template($file)) {
trigger_error(sprintf(__('Error locating %s for inclusion', 'sage'), $file), E_USER_ERROR);
}
require_once $filepath;
}
unset($file, $filepath);
/*
* newspaper Agriculturas e Campanha
*
* Inclui os arquivos relacionados com estas duas áreas do site
*/
include( plugin_dir_path( __FILE__ ).'functions-revista.php' );
include( plugin_dir_path( __FILE__ ).'functions-campanha.php' );
/*
* Custom Taxonomies
* Criando as taxonomias personalizadas 'Temas de intervenção' / 'Programas'
*/
function aspta_build_taxonomies() {
// Temas de intervenção
$labels = array(
'name' => 'Temas de intervenção',
'singular_name' => 'Tema de intervenção',
'search_items' => 'Pesquisar temas',
'all_items' => 'Todos os temas',
'parent_item' => 'Tema pai',
'parent_item_colon' => 'Tema pai: ',
'edit_item' => 'Editar tema',
'update_item' => 'Atualizar tema',
'add_new_item' => 'Adicionar Novo Tema de intervenção',
'new_item_name' => 'Novo tema',
'menu_name' => 'Temas de intervenção'
);
register_taxonomy( 'temas-de-intervencao', 'post', array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_in_nav_menus' => false,
'query_var' => true,
'capabilities' => array('edit_terms' => false,'manage_terms' => false),
'rewrite' => array( 'slug' => 'temas-de-intervencao' ),
));
// Programas
$labels = array(
'name' => 'Programas',
'singular_name' => 'Programa',
'search_items' => 'Pesquisar programas',
'all_items' => 'Todos os programas',
'parent_item' => 'Programa pai',
'parent_item_colon' => 'Programa pai: ',
'edit_item' => 'Editar programa',
'update_item' => 'Atualizar programa',
'add_new_item' => 'Adicionar Novo Programa',
'new_item_name' => 'Novo programa',
'menu_name' => 'Programas'
);
register_taxonomy( 'programas', 'post', array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_in_nav_menus' => false,
'query_var' => true,
'capabilities' => array('edit_terms' => false,'manage_terms' => false),
'rewrite' => array( 'slug' => 'programas/tag', 'with_front' => true),
));
}
add_action( 'init', 'aspta_build_taxonomies', 0 );
/** Mau Alert
The ideia is insert functions on extras but dont works now... :(
get selected mark for options on newspaper edition select
but this is usable for ...
**/
function is_selected($value, $get, $name) {
if (isset($get[$name]) && $value == $get[$name])
echo "selected";
}
// Create the query var so that WP catches the custom /member/username url
add_filter('query_vars', function($vars){
$vars[] = 'newspaper';
return $vars;
} , 100);
// create page newspaper
add_action( 'init', function(){
add_rewrite_tag('%newspaper%', '([^&]+)');
add_rewrite_rule('^revistas/([^/]*)?', 'index.php?newspaper=$matches[1]', 'top');
});
add_action( 'init', function(){
$rules = get_option('rewrite_rules');
$found = false;
if(is_array($rules))
{
foreach($rules as $rule)
{
if(strpos($rule, 'newspaper') !== false)
{
$found = true;
break;
}
}
if(! $found)
{
global $wp_rewrite;
$wp_rewrite->flush_rules();
}
}
});
// Custom Post Type for pdf newspaper
add_action('init', 'create_newspaper_pdf');
function create_newspaper_pdf() {
$labels = array(
'name' => esc_html__( 'PDF Revista', 'aspta_sage' ),
'singular_name' => esc_html__( 'PDF Revista', 'aspta_sage' ),
'add_new' => esc_html__( 'Adicionar Novo', 'aspta_sage' ),
'add_new_item' => esc_html__( 'Adicionar Novo PDF Revista', 'aspta_sage' ),
'edit_item' => esc_html__( 'Editar PDF Revista', 'aspta_sage' ),
'new_item' => esc_html__( 'Novo PDF Revista', 'aspta_sage' ),
'all_items' => esc_html__( 'Cadastrar Revista do histórico', 'aspta_sage' ),
'view_item' => esc_html__( 'Visualizar PDF Revista', 'aspta_sage' ),
'search_items' => esc_html__( 'Buscar PDF Revista', 'aspta_sage' ),
'not_found' => esc_html__( 'Nada Encontrado', 'aspta_sage' ),
'not_found_in_trash' => esc_html__( 'Nada encontrado na Lixeira', 'aspta_sage' ),
'parent_item_colon' => ''
);
$args = array(
'labels' => $labels,
'publicly_queryable' => true,
'show_ui' => true,
'can_export' => true,
'show_in_nav_menus' => true,
'query_var' => true,
'has_archive' => true,
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'thumbnail' ),
'menu_icon' => 'dashicons-media-document',
);
$plugin = "issuem/issuem.php";
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if ( is_plugin_active($plugin) ){
$args['show_in_menu'] = 'edit.php?post_type=article';
}
register_post_type( 'pdf_newspaper', $args );
}
/*add_action("admin_menu", "update_menu");
function update_menu() {
global $menu;
//remove_menu_page('edit.php?post_type=article');
//add_menu_page( "Revista Agriculturas", "Revista Agriculturas", "edit_articles", "edit.php?post_type=article","", "/wp-content/plugins/issuem/images/issuem-16x16.png" );
}*/
//$labels = apply_filters( "post_type_labels_{$post_type}", $labels );
function aspta_replace_menu_labels($labels) {
$labels->name = 'Artigos';
$labels->singular_name = 'Artigo';
$labels->add_new = 'Adicionar Novo Artigo';
$labels->add_new_item = 'Adicionar Novo Artigo';
$labels->edit_item = 'Editar Artigo';
$labels->view_item = 'Visualizar Artigo';
$labels->name = 'Articles';
$labels->singular_name = 'Artigo';
// $labels->add_new = 'Add New Article';
// $labels->add_new_item = 'Add New Article';
// $labels->edit_item = 'Edit Article';
$labels->new_item = 'Novo Artigo';
// $labels->view_item = 'View Article';
$labels->view_items = 'Ver Artigos';
$labels->search_items = 'Procurar Artigos';
$labels->not_found = 'Nenhum Artigo encontrado';
$labels->not_found_in_trash = 'Nenhum Artigo encontrado na lixeira';
// $labels->parent_item_colon = '';
$labels->all_items = 'Artigos';
$labels->archives = 'Artigos';
$labels->attributes = 'Atributos do Artigo';
$labels->insert_into_item = 'Inserir no Artigo';
$labels->uploaded_to_this_item = 'Anexadas a este Artigo';
$labels->featured_image = 'Imagem destacada do Artigo';
// $labels->set_featured_image = 'Definir imagem destacada';
// $labels->remove_featured_image = 'Remover imagem destacada';
// $labels->use_featured_image = 'Usar como Imagem Destacada';
$labels->filter_items_list = 'Filtrar lista de Artigos';
$labels->items_list_navigation = 'Navegação da lista de Artigos';
$labels->items_list = 'Lista de Artigos';
$labels->menu_name = 'Revista Agriculturas';
$labels->name_admin_bar = 'Revista Agriculturas';
return $labels;
}
add_filter('post_type_labels_article', 'aspta_replace_menu_labels');
function aspta_replace_issuem_issue_menu_labels($labels) {
$labels->name= 'Revistas';
$labels->singular_name= 'Revista';
$labels->search_items= 'Procurar Revistas';
$labels->popular_items= '';
$labels->all_items= 'Todas as Revistas';
$labels->parent_item= 'Revista mãe';
$labels->parent_item_colon= 'Revistas mãe:';
$labels->edit_item= 'Editar Revista';
$labels->view_item= 'Ver Revista';
$labels->update_item= 'Atualizar Revista';
$labels->add_new_item= 'Adicionar Nova Revista';
$labels->new_item_name= 'Nova Revista';
$labels->separate_items_with_commas= '';
$labels->add_or_remove_items= '';
$labels->choose_from_most_used= '';
$labels->not_found= 'Nenhuma revista foi encontrada.';
$labels->no_terms= 'Nenhuma revista';
$labels->items_list_navigation= 'Navegação da listas de Revistas';
$labels->items_list= 'Lista de Revistas';
$labels->menu_name= 'Revistas';
$labels->name_admin_bar= 'Revista';
$labels->archives= 'Todas as Revistas';
return $labels;
}
add_filter('taxonomy_labels_issuem_issue', 'aspta_replace_issuem_issue_menu_labels');
function aspta_replace_issuem_issue_categories_menu_labels($labels) {
$labels->name= 'Categorias de Artigos';
$labels->singular_name= 'Categoria de Artigo';
$labels->search_items= 'Procurar Categorias de Artigos';
$labels->popular_items= '';
$labels->all_items= 'Todas as Categorias de Artigos';
$labels->parent_item= 'Categoria de Artigo mãe';
$labels->parent_item_colon= 'Categorias de Artigos mãe:';
$labels->edit_item= 'Editar Categoria de Artigo';
$labels->view_item= 'Ver Categoria de Artigo';
$labels->update_item= 'Atualizar Categoria de Artigo';
$labels->add_new_item= 'Adicionar Nova Categoria de Artigo';
$labels->new_item_name= 'Nova Categoria de Artigo';
$labels->separate_items_with_commas= '';
$labels->add_or_remove_items= '';
$labels->choose_from_most_used= '';
$labels->not_found= 'Nenhuma Categoria de Artigo foi encontrada.';
$labels->no_terms= 'Nenhuma Categoria de Artigo';
$labels->items_list_navigation= 'Navegação da listas de Categorias de Artigos';
$labels->items_list= 'Lista de Categorias de Artigos';
$labels->menu_name= 'Categorias de Artigos';
$labels->name_admin_bar= 'Categoria de Artigo';
$labels->archives= 'Todas as Categorias de Artigos';
return $labels;
}
add_filter('taxonomy_labels_issuem_issue_categories', 'aspta_replace_issuem_issue_categories_menu_labels');
function aspta_replace_issuem_issue_tags_menu_labels($labels) {
$labels->name= 'Palavras-chave';
$labels->singular_name= 'Palavra-chave';
$labels->search_items= 'Procurar Palavras-chave';
$labels->popular_items= '';
$labels->all_items= 'Todas as Palavras-chave';
$labels->parent_item= 'Palavra-chave mãe';
$labels->parent_item_colon= 'Palavras-chave mãe:';
$labels->edit_item= 'Editar Palavra-chave';
$labels->view_item= 'Ver Palavra-chave';
$labels->update_item= 'Atualizar Palavra-chave';
$labels->add_new_item= 'Adicionar Nova Palavra-chave';
$labels->new_item_name= 'Nova Palavra-chave';
$labels->separate_items_with_commas= '';
$labels->add_or_remove_items= '';
$labels->choose_from_most_used= '';
$labels->not_found= 'Nenhuma Palavra-chave foi encontrada.';
$labels->no_terms= 'Nenhuma Palavra-chave';
$labels->items_list_navigation= 'Navegação da listas de Palavras-chave';
$labels->items_list= 'Lista de Palavras-chave';
$labels->menu_name= 'Palavras-chave';
$labels->name_admin_bar= 'Palavra-chave';
$labels->archives= 'Todas as Palavras-chave';
return $labels;
}
add_filter('taxonomy_labels_issuem_issue_tags', 'aspta_replace_issuem_issue_tags_menu_labels');
add_action('add_meta_boxes', 'add_custom_meta_boxes');
function add_custom_meta_boxes() {
add_meta_box('pdf_newspaper-meta-box', __('Anexar PDF', 'aspta_sage'), 'display_pdf_box', 'pdf_newspaper', 'normal', 'high');
}
function display_pdf_box(){
$html = '<p class="description">';
$html .= 'Upload your PDF here.';
$html .= '</p>';
$html .= '<input type="file" id="wp_custom_attachment" name="wp_custom_attachment" value="" size="25">';
echo $html;
global $post;
$pdf = get_post_meta( $post->ID, "wp_custom_attachment", true);
if($pdf){
echo "<p>";
echo '<a src="' . $pdf["url"] . '">Link para o pdf</a>';
echo "</p>";
}
}
add_action('save_post', 'save_custom_meta_data');
function save_custom_meta_data($id) {
if(!empty($_FILES['wp_custom_attachment']['name'])) {
$supported_types = array('application/pdf');
$arr_file_type = wp_check_filetype(basename($_FILES['wp_custom_attachment']['name']));
$uploaded_type = $arr_file_type['type'];
if(in_array($uploaded_type, $supported_types)) {
$upload = wp_upload_bits($_FILES['wp_custom_attachment']['name'], null, file_get_contents($_FILES['wp_custom_attachment']['tmp_name']));
if(isset($upload['error']) && $upload['error'] != 0) {
wp_die('Aconteceu um erro ao tentar fazer o upload do seu arquivo. O erro foi: ' . $upload['error']);
} else {
update_post_meta($id, 'wp_custom_attachment', $upload);
}
}
else {
wp_die("O arquivo que você esta tentando enviar não é um PDF.");
}
}
}
add_action('post_edit_form_tag', 'update_edit_form');
function update_edit_form() {
echo ' enctype="multipart/form-data"';
}
function aspta_get_post_thumbnail($echo = true, $magazine = false) {
if ( has_post_thumbnail() ) {
if($echo) {
the_post_thumbnail('destaque');
return true;
} else {
return get_the_post_thumbnail_url(null, 'destaque');
}
} else {
global $post;
$size = 'post-thumbnail';
if($magazine && preg_match_all(
'#\bhttps?://[^\s()<>]+(?:\([\w\d]+\)|([^[:punct:]\s]|/))#', get_the_content(), $match
)
) {
if($echo) {
?>
<div class="issuem_archive">
<div>
<a href="<?php echo get_permalink( get_the_ID() ); ?> " class="featured_archives_cover">
<?php the_revista_thumbnail( 'large' ); ?>
</a>
<p style="width:100px;">
<a href="<?php echo $match[0][0]; ?>">PDF</a>
</p>
</div>
</div><?php
}
else {
return the_revista_thumbnail( 'large', false );
}
} else {
// No post thumbnail, try attachments instead.
$images = get_posts(
array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'post_parent' => $post->ID,
'posts_per_page' => 1, /* Save memory, only need one */
)
);
if ( $images ) {
$size = apply_filters( 'post_thumbnail_size', $size, $post->ID );
$image = wp_get_attachment_image($images[0]->ID, $size, false, '');
if($echo) {
echo $image;
return true;
}
else {
return wp_get_attachment_image_url($images[0]->ID, $size, false);;
}
}
}
}
return false;
}
function aspta_scripts() {
wp_enqueue_script('aspta_comment_scripts', get_template_directory_uri() . '/assets/scripts/comments.js', array('jquery'));
}
add_action('wp_enqueue_scripts', 'aspta_scripts');