|
@@ 2342-2344 (lines=3) @@
|
| 2339 |
|
$strings[] = '<strong class="wc-item-meta-label">' . wp_kses_post( $meta->display_key ) . ':</strong> ' . $value; |
| 2340 |
|
} |
| 2341 |
|
|
| 2342 |
|
if ( $strings ) { |
| 2343 |
|
$html = $args['before'] . implode( $args['separator'], $strings ) . $args['after']; |
| 2344 |
|
} |
| 2345 |
|
|
| 2346 |
|
$html = apply_filters( 'woocommerce_display_item_meta', $html, $item, $args ); |
| 2347 |
|
|
|
@@ 2389-2391 (lines=3) @@
|
| 2386 |
|
} |
| 2387 |
|
} |
| 2388 |
|
|
| 2389 |
|
if ( $strings ) { |
| 2390 |
|
$html = $args['before'] . implode( $args['separator'], $strings ) . $args['after']; |
| 2391 |
|
} |
| 2392 |
|
|
| 2393 |
|
$html = apply_filters( 'woocommerce_display_item_downloads', $html, $item, $args ); |
| 2394 |
|
|