|
@@ 2396-2398 (lines=3) @@
|
| 2393 |
|
$strings[] = '<strong class="wc-item-meta-label">' . wp_kses_post( $meta->display_key ) . ':</strong> ' . $value; |
| 2394 |
|
} |
| 2395 |
|
|
| 2396 |
|
if ( $strings ) { |
| 2397 |
|
$html = $args['before'] . implode( $args['separator'], $strings ) . $args['after']; |
| 2398 |
|
} |
| 2399 |
|
|
| 2400 |
|
$html = apply_filters( 'woocommerce_display_item_meta', $html, $item, $args ); |
| 2401 |
|
|
|
@@ 2443-2445 (lines=3) @@
|
| 2440 |
|
} |
| 2441 |
|
} |
| 2442 |
|
|
| 2443 |
|
if ( $strings ) { |
| 2444 |
|
$html = $args['before'] . implode( $args['separator'], $strings ) . $args['after']; |
| 2445 |
|
} |
| 2446 |
|
|
| 2447 |
|
$html = apply_filters( 'woocommerce_display_item_downloads', $html, $item, $args ); |
| 2448 |
|
|