-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-homepage-promocional.php
60 lines (44 loc) · 1.53 KB
/
template-homepage-promocional.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
<?php
/**
* The template for displaying the homepage.
*
* This page template will display any functions hooked into the `homepage` action.
* By default this includes a variety of product displays and the page content itself. To change the order or toggle these components
* use the Homepage Control plugin.
* https://wordpress.org/plugins/homepage-control/
*
* Template name: Home Promocional
*
* @package storefront
*/
get_header();
?>
<?php
do_shortcode('[slider-worq]');
wc_get_template_part('content', 'credit-cards');
?>
<section id="home-promo-products">
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="home-promo-title">
<h2><?php the_field('titulo_home_promo') ?></h2>
<h4><?php the_field('subtitulo_home_promo') ?></h4>
</div>
<div id="home-promo-container">
<div id="home-promo-banner">
<img src="<?php echo get_template_directory_uri().'/assets/images/sitio/home-promo-banner.jpg' ?>"/>
</div>
<?php
$args = array('category' => 'promociones', 'per_page' => -1, 'columns' => 5,);
echo storefront_do_shortcode('product_category', $args);
?>
</div>
</div>
</div>
</div>
</section>
<?php wc_get_template_part('content', 'featured-2'); ?>
<?php wc_get_template_part('content', 'featured-1'); ?>
<?php
get_footer();