-
Notifications
You must be signed in to change notification settings - Fork 0
/
content-prod-lista.php
55 lines (46 loc) · 2.52 KB
/
content-prod-lista.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
<div class="col-md-3 produto-home produto">
<?php
$product = wc_get_product( get_the_ID() );
// echo '<pre>';
// var_dump($product);
// echo '</pre>';
?>
<div class="produto-imagem">
<?php
echo '<a href="'.get_permalink($post->ID).'">';
echo $product->get_image( 'shop_catalog');
echo '</a>';
do_action( 'woocommerce_after_shop_loop_item_title' );
?>
</div>
<div class="produto-fundo">
<?php
echo '<h4><a href="'.get_permalink($post->ID).'">'.$product->get_title().'</a></h4>';
// the_excerpt();
?>
<?php
// echo "<pre>";
// print_r( );
// echo "<pre>";
do_action( 'woocommerce_after_shop_loop_item' );
// woocommerce_simple_add_to_cart()
// echo $product->get_price_html();
// the_title();
// echo $product->get_image( 'product' );
// echo '<a href="'. $product->add_to_cart_url() .'">' . $product->add_to_cart_text() . "</a>";
?>
<div class="sociais">
<a onclick="window.open('http://www.facebook.com/sharer.php?u=<?php echo get_permalink( );?>', 'myWin', 'toolbar=no, directories=no,location=no, status=yes, menubar=no, resizable=no, scrollbars=yes, width=600,height=400'); return false" target="_blank" href="#">
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/face-prod.png" alt="">
</a>
<a onclick="window.open('https://twitter.com/intent/tweet?original_referer=http%3A%2F%2Frede.com.br%2Fdeepgeek%2F&ref_src=twsrc%5Etfw&text=<?php echo $product->get_title();?>&tw_p=tweetbutton&url=<?php echo get_permalink( );?>', 'myWin', 'toolbar=no, directories=no,location=no, status=yes, menubar=no, resizable=no, scrollbars=yes, width=600,height=400'); return false" TARGET="_blank"
href="#"
>
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/twitter-prod.png" alt="">
</a>
<a data-pin-do="buttonPin" data-pin-count="above" data-pin-custom="true" target="_blank" href="http://www.pinterest.com/pin/create/button/?url=<?php echo urlencode(get_permalink( )) ;?>&media=<?php echo wp_get_attachment_url($product->get_image_id());?>&description=<?php echo $product->get_title();?>"><img src="<?php echo get_template_directory_uri(); ?>/assets/images/pinterest-prod.png" class="pin-btn"height="25"/></a>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div><!--<div class="produto-fundo">-->
</div>