-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
executable file
·108 lines (90 loc) · 3.28 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
<?php
define('ATUNEARTE_VERSION', 1.0);
// Añade la posibilidad de RSS dentro del Sitio Web
add_theme_support('automatic-feed-links');
// Añade funcionalidades de HTML5
add_theme_support('html5', array( 'search-form', 'comment-form', 'comment-list' ));
// Añade soporte de los formatos de entradas
add_theme_support('post-formats', array('aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video'));
// Añade la funcionalidad de Soporte de Thumbnails e Imagenes Destacadas
add_theme_support('post-thumbnails');
// Añade recortes de imágenes según las dimensiones que se le otorgen
if (function_exists('add_image_size')) {
add_image_size('img-150x150', 150, 150, true);
add_image_size('img-250x250', 250, 250, true);
}
// Añade menús al tema para personalizar su ubicación
register_nav_menus(
array(
'primary' => 'Principal', // Register the Primary menu
)
);
// Función que permite controlar la cantidad de palabras en el Excerpt
function custom_excerpt_length($length) {
return 90;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
// Función que permite cambiar "[...]" del excerpt por cualquier otra combinación de caracteres
function new_excerpt_more($more) {
return ' ...';
}
add_filter('excerpt_more', 'new_excerpt_more');
function the_breadcrumb() {
echo '<span>» <a href="'.get_option('home').'">Inicio</a></span> ';
if (is_single()) {
echo "<span>» ";
the_title();
echo "</span> ";
} elseif (is_category() || is_single()) {
echo "<span>» ";
the_category('title_li=');
echo "</span> ";
} elseif (is_page()) {
echo "<span>» ";
echo the_title();
echo "</span> ";
}
}
// Función que permite generar secciónes para uso de widgets
function atunearte_columns() {
register_sidebar(array(
'id' => 'home-sidebar',
'name' => 'Home Sidebar',
'description' => 'Agregue aquí los widgets que desea mostrar en esta sección.',
'before_widget' => '<div class="widgets-sidebar">',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>',
'empty_title'=> '',
));
}
add_action( 'widgets_init', 'atunearte_columns' );
// Función que permite incorporar al tema Hojas de Estilos y Scripts de javascripts
function atunearte_styles_scripts() {
// Añade script para mover el form de comentarios
if (is_singular() && comments_open() && get_option('thread_comments')):
wp_enqueue_script( 'comment-reply' );
endif;
// Añade las Hojas de Estilos
wp_enqueue_style( 'atunearte_global', get_template_directory_uri() . '/style.css', '10000', 'all' );
// Añade JavaScripts
//wp_enqueue_script( 'naked-fitvid', get_template_directory_uri() . '/js/jquery.fitvids.js', array( 'jquery' ), ATUNEARTE_VERSION, true );
}
add_action( 'wp_enqueue_scripts', 'atunearte_styles_scripts' );
// Función que añade la funcionalidad de paginador al template
function atunearte_post_paging() {
global $wp_query;
if ($wp_query->max_num_pages < 2)
return;
?>
<div class="entries-nav">
<?php if ( get_previous_posts_link() ) : ?>
<div class="nav-previous"><?php previous_posts_link('Anterior'); ?></div>
<?php endif; ?>
<?php if ( get_next_posts_link() ) : ?>
<div class="nav-next"><?php next_posts_link('Siguiente'); ?></div>
<?php endif; ?>
</div>
<?php
}
?>