-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
96 lines (88 loc) · 2.32 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
<?php
// Añadir Menús
add_theme_support('menus');
// Añadir Imagen Destacada
add_theme_support('post-thumbnails');
// Insertar Imagen Destacada
function imagen_destacada($clases = "", $img = "assets/img/destacada.jpg") {
if ( has_post_thumbnail() ):
if ( $clases == "" )
the_post_thumbnail('post-thumbnail');
else
the_post_thumbnail('post-thumbnail', ['class' => $clases]);
else:
$ruta = get_template_directory_uri();
if ( $clases == "" )
echo "<img src='$ruta/$img'>";
else
echo "<img class='$clases' src='$ruta/$img'>";
endif;
}
// Registrar scripts y hojas de estilo
add_action(
'wp_enqueue_scripts',
'registrar_archivos',
1
);
function registrar_archivos() {
// Bootstrap
wp_register_style(
'bootstrap',
get_template_directory_uri() . '/assets/css/bootstrap/bootstrap.min.css'
);
// Font Awesome
wp_register_style(
'font-awesome',
get_template_directory_uri() . '/assets/css/font-awesome.min.css'
);
// General
wp_register_style(
'general',
get_template_directory_uri() . '/assets/css/general.css'
);
// Header
wp_register_style(
'header',
get_template_directory_uri() . '/assets/css/header.min.css'
);
// Index
wp_register_style(
'index',
get_template_directory_uri() . '/assets/css/index.css'
);
// Page
wp_register_style(
'page',
get_template_directory_uri() . '/assets/css/page.min.css'
);
// Footer
wp_register_style(
'footer',
get_template_directory_uri() . '/assets/css/footer.css'
);
// Menu Mobile Script
wp_register_script(
'menu-mobile',
get_template_directory_uri() . '/assets/js/menu-mobile.js'
);
}
// Añadir los scripts y hojas de estilo
add_action(
'wp_enqueue_scripts',
'agregar_archivos'
);
function agregar_archivos() {
wp_enqueue_style('bootstrap');
wp_enqueue_style('font-awesome');
wp_enqueue_style('general');
wp_enqueue_style('header');
wp_enqueue_style('index');
wp_enqueue_style('page');
wp_enqueue_style('footer');
wp_enqueue_script('menu-mobile');
}
// Incluir Post Types
include('functions-post-types.php');
// Incluir Taxonomias
include('functions-taxonomies.php');
?>