woocommerce_display_item_meta

woocommerce_display_item_meta

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_display_item_meta') is found 1 times:

  • /includes/wc-template-functions.php line 3472
    		if ( $strings ) {
    			$html = $args['before'] . implode( $args['separator'], $strings ) . $args['after'];
    		}
    
    		$html = apply_filters( 'woocommerce_display_item_meta', $html, $item, $args );
    
    		if ( $args['echo'] ) {
    			// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    			echo $html;
    		} else {
    			return $html;