Produkttitel vor Bild verschieben

// Move product entry title before image
add_action( 'init', function() {
	remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
	add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_title', -1 );
}, PHP_INT_MAX );