-
Notifications
You must be signed in to change notification settings - Fork 0
/
front-page.php
62 lines (51 loc) · 1.41 KB
/
front-page.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
<?php
/**
* Muestra el buscador en el Header
*
* @package Mercurio
* @subpackage Mercurio
*/
$contents = ['post', 'video'];
$stickyBox = 'Información actual variada, educativa y contenido acto para todo público';
global $contents;
get_header();
?>
<div class="o-content">
<?php get_template_part(
'template-parts/front-page/headliners/headline-grid',
'',
$args = [
'version' => 1
]
); ?>
<?php get_template_part( 'template-parts/front-page/featured/featured-container' ); ?>
<?php get_template_part(
'template-parts/front-page/category/category-container',
null,
$args = [
'category' => 80,
'number_post' => 3,
'ad' => 2,
'up_arrow' => $stickyBox,
'type_reviews' => 'book'
]
); ?>
<?php get_template_part(
'template-parts/front-page/lastest/tag',
null,
$args = [
'tag' => 107
]); ?>
<?php get_template_part(
'template-parts/front-page/category/category-container',
null,
$args = [
'category' => 39,
'number_post' => 3,
'ad' => 3,
'up_arrow' => $stickyBox,
'type_reviews' => 'several'
]
); ?>
</div>
<?php get_footer(); ?>