|
@@ 2355-2357 (lines=3) @@
|
| 2352 |
|
$strings[] = '<strong class="wc-item-meta-label">' . wp_kses_post( $meta->display_key ) . ':</strong> ' . $value; |
| 2353 |
|
} |
| 2354 |
|
|
| 2355 |
|
if ( $strings ) { |
| 2356 |
|
$html = $args['before'] . implode( $args['separator'], $strings ) . $args['after']; |
| 2357 |
|
} |
| 2358 |
|
|
| 2359 |
|
$html = apply_filters( 'woocommerce_display_item_meta', $html, $item, $args ); |
| 2360 |
|
|
|
@@ 2402-2404 (lines=3) @@
|
| 2399 |
|
} |
| 2400 |
|
} |
| 2401 |
|
|
| 2402 |
|
if ( $strings ) { |
| 2403 |
|
$html = $args['before'] . implode( $args['separator'], $strings ) . $args['after']; |
| 2404 |
|
} |
| 2405 |
|
|
| 2406 |
|
$html = apply_filters( 'woocommerce_display_item_downloads', $html, $item, $args ); |
| 2407 |
|
|