forked from woocommerce/woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
woocommerce-template.php
1508 lines (1229 loc) · 40.9 KB
/
woocommerce-template.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* WooCommerce Template Functions
*
* Functions used in the template files to output content - in most cases hooked in via the template actions. All functions are pluggable.
*
* @author WooThemes
* @category Core
* @package WooCommerce/Templates
* @version 1.6.4
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/** Template pages ********************************************************/
if ( ! function_exists( 'woocommerce_content' ) ) {
/**
* Output WooCommerce content.
*
* This function is only used in the optional 'woocommerce.php' template
* which people can add to their themes to add basic woocommerce support
* without hooks or modifying core templates.
*
* @access public
* @return void
*/
function woocommerce_content() {
if ( is_singular( 'product' ) ) {
while ( have_posts() ) : the_post();
woocommerce_get_template_part( 'content', 'single-product' );
endwhile;
} else { ?>
<?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
<h1 class="page-title"><?php woocommerce_page_title(); ?></h1>
<?php endif; ?>
<?php do_action( 'woocommerce_archive_description' ); ?>
<?php if ( have_posts() ) : ?>
<?php do_action('woocommerce_before_shop_loop'); ?>
<?php woocommerce_product_loop_start(); ?>
<?php woocommerce_product_subcategories(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php woocommerce_get_template_part( 'content', 'product' ); ?>
<?php endwhile; // end of the loop. ?>
<?php woocommerce_product_loop_end(); ?>
<?php do_action('woocommerce_after_shop_loop'); ?>
<?php elseif ( ! woocommerce_product_subcategories( array( 'before' => woocommerce_product_loop_start( false ), 'after' => woocommerce_product_loop_end( false ) ) ) ) : ?>
<?php woocommerce_get_template( 'loop/no-products-found.php' ); ?>
<?php endif;
}
}
}
if ( ! function_exists( 'woocommerce_single_product_content' ) ) {
/**
* woocommerce_single_product_content function.
*
* @access public
* @return void
* @deprecated 1.6
*/
function woocommerce_single_product_content() {
_deprecated_function( __FUNCTION__, '1.6' );
woocommerce_content();
}
}
if ( ! function_exists( 'woocommerce_archive_product_content' ) ) {
/**
* woocommerce_archive_product_content function.
*
* @access public
* @return void
* @deprecated 1.6
*/
function woocommerce_archive_product_content() {
_deprecated_function( __FUNCTION__, '1.6' );
woocommerce_content();
}
}
if ( ! function_exists( 'woocommerce_product_taxonomy_content' ) ) {
/**
* woocommerce_product_taxonomy_content function.
*
* @access public
* @return void
* @deprecated 1.6
*/
function woocommerce_product_taxonomy_content() {
_deprecated_function( __FUNCTION__, '1.6' );
woocommerce_content();
}
}
/** Global ****************************************************************/
if ( ! function_exists( 'woocommerce_output_content_wrapper' ) ) {
/**
* Output the start of the page wrapper.
*
* @access public
* @return void
*/
function woocommerce_output_content_wrapper() {
woocommerce_get_template( 'shop/wrapper-start.php' );
}
}
if ( ! function_exists( 'woocommerce_output_content_wrapper_end' ) ) {
/**
* Output the end of the page wrapper.
*
* @access public
* @return void
*/
function woocommerce_output_content_wrapper_end() {
woocommerce_get_template( 'shop/wrapper-end.php' );
}
}
if ( ! function_exists( 'woocommerce_show_messages' ) ) {
/**
* Show messages on the frontend.
*
* @access public
* @return void
*/
function woocommerce_show_messages() {
global $woocommerce;
if ( $woocommerce->error_count() > 0 )
woocommerce_get_template( 'shop/errors.php', array(
'errors' => $woocommerce->get_errors()
) );
if ( $woocommerce->message_count() > 0 )
woocommerce_get_template( 'shop/messages.php', array(
'messages' => $woocommerce->get_messages()
) );
$woocommerce->clear_messages();
}
}
if ( ! function_exists( 'woocommerce_get_sidebar' ) ) {
/**
* Get the shop sidebar template.
*
* @access public
* @return void
*/
function woocommerce_get_sidebar() {
woocommerce_get_template( 'shop/sidebar.php' );
}
}
if ( ! function_exists( 'woocommerce_demo_store' ) ) {
/**
* Adds a demo store banner to the site if enabled
*
* @access public
* @return void
*/
function woocommerce_demo_store() {
if ( get_option( 'woocommerce_demo_store' ) == 'no' )
return;
$notice = get_option( 'woocommerce_demo_store_notice' );
if ( empty( $notice ) )
$notice = __( 'This is a demo store for testing purposes — no orders shall be fulfilled.', 'woocommerce' );
echo apply_filters( 'woocommerce_demo_store', '<p class="demo_store">' . $notice . '</p>' );
}
}
/** Loop ******************************************************************/
if ( ! function_exists( 'woocommerce_page_title' ) ) {
/**
* woocommerce_page_title function.
*
* @access public
* @return void
*/
function woocommerce_page_title() {
if ( is_search() ) {
$page_title = sprintf( __( 'Search Results: “%s”', 'woocommerce' ), get_search_query() );
if ( get_query_var( 'paged' ) )
$page_title .= sprintf( __( ' – Page %s', 'woocommerce' ), get_query_var( 'paged' ) );
} elseif ( is_tax() ) {
$page_title = single_term_title( "", false );
} else {
$shop_page_id = woocommerce_get_page_id( 'shop' );
$page_title = get_the_title( $shop_page_id );
}
echo apply_filters( 'woocommerce_page_title', $page_title );
}
}
if ( ! function_exists( 'woocommerce_product_loop_start' ) ) {
/**
* Output the start of a product loop. By default this is a UL
*
* @access public
* @return void
*/
function woocommerce_product_loop_start( $echo = true ) {
ob_start();
woocommerce_get_template( 'loop/loop-start.php' );
if ( $echo )
echo ob_get_clean();
else
return ob_get_clean();
}
}
if ( ! function_exists( 'woocommerce_product_loop_end' ) ) {
/**
* Output the end of a product loop. By default this is a UL
*
* @access public
* @return void
*/
function woocommerce_product_loop_end( $echo = true ) {
ob_start();
woocommerce_get_template( 'loop/loop-end.php' );
if ( $echo )
echo ob_get_clean();
else
return ob_get_clean();
}
}
if ( ! function_exists( 'woocommerce_taxonomy_archive_description' ) ) {
/**
* Show an archive description on taxonomy archives
*
* @access public
* @subpackage Archives
* @return void
*/
function woocommerce_taxonomy_archive_description() {
if ( is_tax( array( 'product_cat', 'product_tag' ) ) && get_query_var( 'paged' ) == 0 ) {
$description = apply_filters( 'the_content', term_description() );
if ( $description ) {
echo '<div class="term-description">' . $description . '</div>';
}
}
}
}
if ( ! function_exists( 'woocommerce_product_archive_description' ) ) {
/**
* Show a shop page description on product archives
*
* @access public
* @subpackage Archives
* @return void
*/
function woocommerce_product_archive_description() {
if ( is_post_type_archive( 'product' ) && get_query_var( 'paged' ) == 0 ) {
$shop_page = get_post( woocommerce_get_page_id( 'shop' ) );
$description = apply_filters( 'the_content', $shop_page->post_content );
if ( $description ) {
echo '<div class="page-description">' . $description . '</div>';
}
}
}
}
if ( ! function_exists( 'woocommerce_template_loop_add_to_cart' ) ) {
/**
* Get the add to cart template for the loop.
*
* @access public
* @subpackage Loop
* @return void
*/
function woocommerce_template_loop_add_to_cart() {
woocommerce_get_template( 'loop/add-to-cart.php' );
}
}
if ( ! function_exists( 'woocommerce_template_loop_product_thumbnail' ) ) {
/**
* Get the product thumbnail for the loop.
*
* @access public
* @subpackage Loop
* @return void
*/
function woocommerce_template_loop_product_thumbnail() {
echo woocommerce_get_product_thumbnail();
}
}
if ( ! function_exists( 'woocommerce_template_loop_price' ) ) {
/**
* Get the product price for the loop.
*
* @access public
* @subpackage Loop
* @return void
*/
function woocommerce_template_loop_price() {
woocommerce_get_template( 'loop/price.php' );
}
}
if ( ! function_exists( 'woocommerce_template_loop_rating' ) ) {
/**
* Display the average rating in the loop
*
* @access public
* @subpackage Loop
* @return void
*/
function woocommerce_template_loop_rating() {
woocommerce_get_template( 'loop/rating.php' );
}
}
if ( ! function_exists( 'woocommerce_show_product_loop_sale_flash' ) ) {
/**
* Get the sale flash for the loop.
*
* @access public
* @subpackage Loop
* @return void
*/
function woocommerce_show_product_loop_sale_flash() {
woocommerce_get_template( 'loop/sale-flash.php' );
}
}
if ( ! function_exists( 'woocommerce_reset_loop' ) ) {
/**
* Reset the loop's index and columns when we're done outputting a product loop.
*
* @access public
* @subpackage Loop
* @return void
*/
function woocommerce_reset_loop() {
global $woocommerce_loop;
// Reset loop/columns globals when starting a new loop
$woocommerce_loop['loop'] = $woocommerce_loop['column'] = '';
}
}
add_filter( 'loop_end', 'woocommerce_reset_loop' );
if ( ! function_exists( 'woocommerce_get_product_thumbnail' ) ) {
/**
* Get the product thumbnail, or the placeholder if not set.
*
* @access public
* @subpackage Loop
* @param string $size (default: 'shop_catalog')
* @param int $placeholder_width (default: 0)
* @param int $placeholder_height (default: 0)
* @return string
*/
function woocommerce_get_product_thumbnail( $size = 'shop_catalog', $placeholder_width = 0, $placeholder_height = 0 ) {
global $post;
if ( has_post_thumbnail() )
return get_the_post_thumbnail( $post->ID, $size );
elseif ( woocommerce_placeholder_img_src() )
return woocommerce_placeholder_img( $size );
}
}
if ( ! function_exists( 'woocommerce_result_count' ) ) {
/**
* Output the result count text (Showing x - x of x results).
*
* @access public
* @subpackage Loop
* @return void
*/
function woocommerce_result_count() {
woocommerce_get_template( 'loop/result-count.php' );
}
}
if ( ! function_exists( 'woocommerce_catalog_ordering' ) ) {
/**
* Output the product sorting options.
*
* @access public
* @subpackage Loop
* @return void
*/
function woocommerce_catalog_ordering() {
global $woocommerce;
$orderby = isset( $_GET['orderby'] ) ? woocommerce_clean( $_GET['orderby'] ) : apply_filters( 'woocommerce_default_catalog_orderby', get_option( 'woocommerce_default_catalog_orderby' ) );
woocommerce_get_template( 'loop/orderby.php', array( 'orderby' => $orderby ) );
}
}
if ( ! function_exists( 'woocommerce_pagination' ) ) {
/**
* Output the pagination.
*
* @access public
* @subpackage Loop
* @return void
*/
function woocommerce_pagination() {
woocommerce_get_template( 'loop/pagination.php' );
}
}
/** Single Product ********************************************************/
if ( ! function_exists( 'woocommerce_show_product_images' ) ) {
/**
* Output the product image before the single product summary.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_show_product_images() {
woocommerce_get_template( 'single-product/product-image.php' );
}
}
if ( ! function_exists( 'woocommerce_show_product_thumbnails' ) ) {
/**
* Output the product thumbnails.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_show_product_thumbnails() {
woocommerce_get_template( 'single-product/product-thumbnails.php' );
}
}
if ( ! function_exists( 'woocommerce_output_product_data_tabs' ) ) {
/**
* Output the product tabs.
*
* @access public
* @subpackage Product/Tabs
* @return void
*/
function woocommerce_output_product_data_tabs() {
woocommerce_get_template( 'single-product/tabs/tabs.php' );
}
}
if ( ! function_exists( 'woocommerce_template_single_title' ) ) {
/**
* Output the product title.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_template_single_title() {
woocommerce_get_template( 'single-product/title.php' );
}
}
if ( ! function_exists( 'woocommerce_template_single_price' ) ) {
/**
* Output the product price.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_template_single_price() {
woocommerce_get_template( 'single-product/price.php' );
}
}
if ( ! function_exists( 'woocommerce_template_single_excerpt' ) ) {
/**
* Output the product short description (excerpt).
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_template_single_excerpt() {
woocommerce_get_template( 'single-product/short-description.php' );
}
}
if ( ! function_exists( 'woocommerce_template_single_meta' ) ) {
/**
* Output the product meta.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_template_single_meta() {
woocommerce_get_template( 'single-product/meta.php' );
}
}
if ( ! function_exists( 'woocommerce_template_single_sharing' ) ) {
/**
* Output the product sharing.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_template_single_sharing() {
woocommerce_get_template( 'single-product/share.php' );
}
}
if ( ! function_exists( 'woocommerce_show_product_sale_flash' ) ) {
/**
* Output the product sale flash.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_show_product_sale_flash() {
woocommerce_get_template( 'single-product/sale-flash.php' );
}
}
if ( ! function_exists( 'woocommerce_template_single_add_to_cart' ) ) {
/**
* Trigger the single product add to cart action.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_template_single_add_to_cart() {
global $product;
do_action( 'woocommerce_' . $product->product_type . '_add_to_cart' );
}
}
if ( ! function_exists( 'woocommerce_simple_add_to_cart' ) ) {
/**
* Output the simple product add to cart area.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_simple_add_to_cart() {
woocommerce_get_template( 'single-product/add-to-cart/simple.php' );
}
}
if ( ! function_exists( 'woocommerce_grouped_add_to_cart' ) ) {
/**
* Output the grouped product add to cart area.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_grouped_add_to_cart() {
woocommerce_get_template( 'single-product/add-to-cart/grouped.php' );
}
}
if ( ! function_exists( 'woocommerce_variable_add_to_cart' ) ) {
/**
* Output the variable product add to cart area.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_variable_add_to_cart() {
global $product;
// Enqueue variation scripts
wp_enqueue_script( 'wc-add-to-cart-variation' );
// Load the template
woocommerce_get_template( 'single-product/add-to-cart/variable.php', array(
'available_variations' => $product->get_available_variations(),
'attributes' => $product->get_variation_attributes(),
'selected_attributes' => $product->get_variation_default_attributes()
) );
}
}
if ( ! function_exists( 'woocommerce_external_add_to_cart' ) ) {
/**
* Output the external product add to cart area.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_external_add_to_cart() {
global $product;
if ( ! $product->get_product_url() )
return;
woocommerce_get_template( 'single-product/add-to-cart/external.php', array(
'product_url' => $product->get_product_url(),
'button_text' => $product->get_button_text()
) );
}
}
if ( ! function_exists( 'woocommerce_quantity_input' ) ) {
/**
* Output the quantity input for add to cart forms.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_quantity_input( $args = array() ) {
global $product;
$defaults = array(
'input_name' => 'quantity',
'input_value' => '1',
'max_value' => apply_filters( 'woocommerce_quantity_input_max', '', $product ),
'min_value' => apply_filters( 'woocommerce_quantity_input_min', '', $product ),
'step' => apply_filters( 'woocommerce_quantity_input_step', '1', $product )
);
$args = apply_filters( 'woocommerce_quantity_input_args', wp_parse_args( $args, $defaults ), $product );
woocommerce_get_template( 'single-product/add-to-cart/quantity.php', $args );
}
}
if ( ! function_exists( 'woocommerce_product_description_tab' ) ) {
/**
* Output the description tab content.
*
* @access public
* @subpackage Product/Tabs
* @return void
*/
function woocommerce_product_description_tab() {
woocommerce_get_template( 'single-product/tabs/description.php' );
}
}
if ( ! function_exists( 'woocommerce_product_additional_information_tab' ) ) {
/**
* Output the attributes tab content.
*
* @access public
* @subpackage Product/Tabs
* @return void
*/
function woocommerce_product_additional_information_tab() {
woocommerce_get_template( 'single-product/tabs/additional-information.php' );
}
}
if ( ! function_exists( 'woocommerce_product_reviews_tab' ) ) {
/**
* Output the reviews tab content.
*
* @access public
* @subpackage Product/Tabs
* @return void
*/
function woocommerce_product_reviews_tab() {
woocommerce_get_template( 'single-product/tabs/reviews.php' );
}
}
if ( ! function_exists( 'woocommerce_default_product_tabs' ) ) {
/**
* Add default product tabs to product pages.
*
* @access public
* @param mixed $tabs
* @return void
*/
function woocommerce_default_product_tabs( $tabs = array() ) {
global $product, $post;
// Description tab - shows product content
if ( $post->post_content )
$tabs['description'] = array(
'title' => __( 'Description', 'woocommerce' ),
'priority' => 10,
'callback' => 'woocommerce_product_description_tab'
);
// Additional information tab - shows attributes
if ( $product->has_attributes() || ( get_option( 'woocommerce_enable_dimension_product_attributes' ) == 'yes' && ( $product->has_dimensions() || $product->has_weight() ) ) )
$tabs['additional_information'] = array(
'title' => __( 'Additional Information', 'woocommerce' ),
'priority' => 20,
'callback' => 'woocommerce_product_additional_information_tab'
);
// Reviews tab - shows comments
if ( comments_open() )
$tabs['reviews'] = array(
'title' => sprintf( __( 'Reviews (%d)', 'woocommerce' ), get_comments_number( $post->ID ) ),
'priority' => 30,
'callback' => 'comments_template'
);
return $tabs;
}
}
if ( ! function_exists( 'woocommerce_sort_product_tabs' ) ) {
/**
* Sort tabs by priority
*
* @access public
* @return void
*/
function woocommerce_sort_product_tabs( $tabs = array() ) {
// Re-order tabs by priority
if ( ! function_exists( '_sort_priority_callback' ) ) {
function _sort_priority_callback( $a, $b ) {
if ( $a['priority'] == $b['priority'] )
return 0;
return ( $a['priority'] < $b['priority'] ) ? -1 : 1;
}
}
uasort( $tabs, '_sort_priority_callback' );
return $tabs;
}
}
if ( ! function_exists( 'woocommerce_comments' ) ) {
/**
* Output the Review comments template.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_comments( $comment, $args, $depth ) {
$GLOBALS['comment'] = $comment;
woocommerce_get_template( 'single-product/review.php' );
}
}
if ( ! function_exists( 'woocommerce_output_related_products' ) ) {
/**
* Output the related products.
*
* @access public
* @subpackage Product
* @return void
*/
function woocommerce_output_related_products() {
woocommerce_related_products( 2, 2 );
}
}
if ( ! function_exists( 'woocommerce_related_products' ) ) {
/**
* Output the related products.
*
* @access public
* @param int $posts_per_page (default: 2)
* @param int $columns (default: 2)
* @param string $orderby (default: 'rand')
* @return void
*/
function woocommerce_related_products( $posts_per_page = 2, $columns = 2, $orderby = 'rand' ) {
woocommerce_get_template( 'single-product/related.php', array(
'posts_per_page' => $posts_per_page,
'orderby' => $orderby,
'columns' => $columns
) );
}
}
if ( ! function_exists( 'woocommerce_upsell_display' ) ) {
/**
* Output product up sells.
*
* @access public
* @param int $posts_per_page (default: -1)
* @param int $columns (default: 2)
* @param string $orderby (default: 'rand')
* @return void
*/
function woocommerce_upsell_display( $posts_per_page = '-1', $columns = 2, $orderby = 'rand' ) {
woocommerce_get_template( 'single-product/up-sells.php', array(
'posts_per_page' => $posts_per_page,
'orderby' => $orderby,
'columns' => $columns
) );
}
}
/** Cart ******************************************************************/
if ( ! function_exists( 'woocommerce_shipping_calculator' ) ) {
/**
* Output the cart shipping calculator.
*
* @access public
* @subpackage Cart
* @return void
*/
function woocommerce_shipping_calculator() {
woocommerce_get_template( 'cart/shipping-calculator.php' );
}
}
if ( ! function_exists( 'woocommerce_cart_totals' ) ) {
/**
* Output the cart totals.
*
* @access public
* @subpackage Cart
* @return void
*/
function woocommerce_cart_totals() {
woocommerce_get_template( 'cart/totals.php' );
}
}
if ( ! function_exists( 'woocommerce_cross_sell_display' ) ) {
/**
* Output the cart cross-sells.
*
* @access public
* @subpackage Cart
* @return void
*/
function woocommerce_cross_sell_display() {
woocommerce_get_template( 'cart/cross-sells.php' );
}
}
/** Mini-Cart *************************************************************/
if ( ! function_exists( 'woocommerce_mini_cart' ) ) {
/**
* Output the Mini-cart - used by cart widget
*
* @access public
* @return void
*/
function woocommerce_mini_cart( $args = array() ) {
$defaults = array(
'list_class' => ''
);
$args = wp_parse_args( $args, $defaults );
woocommerce_get_template( 'cart/mini-cart.php', $args );
}
}
/** Login *****************************************************************/
if ( ! function_exists( 'woocommerce_login_form' ) ) {
/**
* Output the WooCommerce Login Form
*
* @access public
* @subpackage Forms
* @return void
*/
function woocommerce_login_form( $args = array() ) {
$defaults = array(
'message' => '',
'redirect' => '',
'hidden' => false
);
$args = wp_parse_args( $args, $defaults );
woocommerce_get_template( 'shop/form-login.php', $args );
}
}
if ( ! function_exists( 'woocommerce_checkout_login_form' ) ) {
/**
* Output the WooCommerce Checkout Login Form
*
* @access public
* @subpackage Checkout
* @return void
*/
function woocommerce_checkout_login_form() {
global $woocommerce;
woocommerce_get_template( 'checkout/form-login.php', array( 'checkout' => $woocommerce->checkout() ) );
}
}
if ( ! function_exists( 'woocommerce_breadcrumb' ) ) {
/**
* Output the WooCommerce Breadcrumb
*
* @access public
* @return void
*/
function woocommerce_breadcrumb( $args = array() ) {
$defaults = apply_filters( 'woocommerce_breadcrumb_defaults', array(
'delimiter' => ' / ',
'wrap_before' => '<nav class="woocommerce-breadcrumb" itemprop="breadcrumb">',
'wrap_after' => '</nav>',
'before' => '',
'after' => '',
'home' => _x( 'Home', 'breadcrumb', 'woocommerce' ),
) );
$args = wp_parse_args( $args, $defaults );
woocommerce_get_template( 'shop/breadcrumb.php', $args );
}
}