|
@@ 2370-2372 (lines=3) @@
|
| 2367 |
|
$strings[] = '<strong class="wc-item-meta-label">' . wp_kses_post( $meta->display_key ) . ':</strong> ' . $value; |
| 2368 |
|
} |
| 2369 |
|
|
| 2370 |
|
if ( $strings ) { |
| 2371 |
|
$html = $args['before'] . implode( $args['separator'], $strings ) . $args['after']; |
| 2372 |
|
} |
| 2373 |
|
|
| 2374 |
|
$html = apply_filters( 'woocommerce_display_item_meta', $html, $item, $args ); |
| 2375 |
|
|
|
@@ 2417-2419 (lines=3) @@
|
| 2414 |
|
} |
| 2415 |
|
} |
| 2416 |
|
|
| 2417 |
|
if ( $strings ) { |
| 2418 |
|
$html = $args['before'] . implode( $args['separator'], $strings ) . $args['after']; |
| 2419 |
|
} |
| 2420 |
|
|
| 2421 |
|
$html = apply_filters( 'woocommerce_display_item_downloads', $html, $item, $args ); |
| 2422 |
|
|